Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

환경

OS

CentOS 7

Docker version

Docker version 1.13.1, build 64e9980/1.13.1

환경 변수 설정

설치 전에 환경 변수를 설정해줍니다.

export GITLAB_HOME=/srv/gitlab

설치

sudo docker run --detach \
  --hostname gitlab.example.com \
  --publish 443:443 --publish 80:80 --publish 22:22 \
  --name gitlab \
  --restart always \
  --privileged \
  --volume $GITLAB_HOME/config:/etc/gitlab \
  --volume $GITLAB_HOME/logs:/var/log/gitlab \
  --volume $GITLAB_HOME/data:/var/opt/gitlab \
  gitlab/gitlab-ee:latest
  • --privileged : 해당 권한을 추가하지 않으면 --volume 옵션에 명시된 디렉토리와 관련하여 권한 오류가 발생할 수 있습니다.

  • No labels