Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
export GITLAB_HOME=/srv/gitlab

GitLab container는 다음과 같이 호스트로 마운트 된 볼륨에 데이터를 영구적으로 저장합니다.

Local location

Container location

Usage

$GITLAB_HOME/data

/var/opt/gitlab

application data를 저장

$GITLAB_HOME/logs

/var/log/gitlab

log를 저장

$GITLAB_HOME/config

/etc/gitlab

GitLab configuration 파일을 저장

설치

Code Block
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

...