Docker(15)
-
우분투에 Docker 설치하기
# 설치에 필요한 툴 설치 sudo apt-get udpate sudo apt-get install apt-transprot-https ca-certificates curl software-properties-common # Docker GPG Key 등록 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker.gpg # APT에 Docker repository 추가 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" 또는..
2023.02.25 -
gitlab 명령어
https://abc2080.tistory.com/entry/GitLab-%EC%84%A4%EC%A0%95-%ED%8C%8C%EC%9D%BC-%EB%B0%8F-%EB%AA%85%EB%A0%B9%EC%96%B4 GitLab 설정 파일 및 명령어 설적 적용 # gitlab-ctl reconfigure 서비스 재시작 # gitlab-ctl restart 서비스 상태 확인 # gitlab-ctl status 서비스 중지 # gitlab-ctl stop 서비스 삭제 # gitlab-ctl uninstall 혹은 # gitlab-ctl appt-get.. abc2080.tistory.com gitlab-ctl reconfigure 환경설정 적용 프로젝트명 및 위치 변경 해당 프로젝트 > Settings > Gene..
2022.01.09 -
gitlab-runner 설치
runner 등록 https://nakanara.tistory.com/240 [CI/CD] Gitlab Runner 설치 및 실행하기 gitlab-runner 설치 및 실행하기 기존에는 Jenkins를 사용하여 빌드 및 배포를 진행하고 있었지만, GitLab을 사용하는 만큼 Runner를 사용하여 빌드 및 배포를 진행 gitlab-runner 다운로드 설치 문서: https://do nakanara.tistory.com https://docs.gitlab.com/runner/configuration/advanced-configuration.html Advanced configuration | GitLab Documentation for GitLab Community Edition, GitLab Enter..
2022.01.02 -
Docker 에러
PermissionError: [Errno 13] Permission denied: '/home/docker/app/gitlab/logs/gitlab-shell' gitlab의 파일들은 root권한으로 생성되기 때문에 권한문제 발생하기 때문에 'sudo'로 실행해야 함 sudo docker build sudo docker-compose build WARNING: The GITLAB_HOME variable is not set. Defaulting to a blank string. 'sudo docker-compose build' 수행시 발생 : 신경 안써도 됨 ls: can't open '.': Permission denied 'docker exec -it 컨테이너 bash'로 들어갔는데, volume의..
2022.01.02 -
Docker 명령어
builddocker build --tag gitlab-runner:0.001 .# Dockerfile명이 다른 경우docker build --tag gitlab-runner:0.001 . -f gitlab-runner.Dockerfilebuild 로그 출력--progress=plain 옵션 추가docker buildx build -f Dockerfile --progress=plain -t test:0.001 .run & execdocker run -it -d --name abc abc:0.001docker exec -it abc sh삭제docker image prune : 사용하지 않는 모든 이미지 삭제pushdocker build -t sample:0.001 .docker image tag sampl..
2022.01.02 -
Linux Docker 설치
계정 셋팅 useradd docker passwd docker vi /etc/sudoers # 'docker ALL=(ALL) ALL' 추가 su docker docker 설치 https://niceman.tistory.com/36 [Docker] CentOS 7 - Docker 설치 및 실행 방법 1. Docker 기본 설치 # 1.yum 패키지 업데이트 yum -y update # 2.Docker & Docker Registry 설치 yum -y install docker docker-registry cs 2. Docker 실행 및 자동(On Boot) 실행 서비스 등록 #.. niceman.tistory.com yum -y update yum -y install docker docker-regist..
2021.12.31