develog

[windows] docker 로 gitlab 설치 본문

Dev/git

[windows] docker 로 gitlab 설치

냐옴 2021. 5. 13. 23:39

cmd 에서 실행

set GITLAB_HOME=C:\gitlab
echo %GITLAB_HOME%
docker run --detach --hostname gitlab.example.com ^
  --publish 443:443 --publish 80:80 --publish 22:22 ^
  --name gitlab ^
  --restart always ^
  --volume %GITLAB_HOME%\config:/etc/gitlab ^
  --volume %GITLAB_HOME%\logs:/var/log/gitlab ^
  --volume %GITLAB_HOME%\data:/var/opt/gitlab ^
  gitlab/gitlab-ce:latest

 

https://docs.gitlab.com/omnibus/docker/

 

GitLab Docker images | GitLab

Documentation for GitLab Community Edition, GitLab Enterprise Edition, Omnibus GitLab, and GitLab Runner.

docs.gitlab.com

 

'Dev > git' 카테고리의 다른 글

[git] log  (0) 2021.06.30
[git] fatal: refusing to merge unrelated histories  (0) 2021.05.19
[mac] docker 로 gitlab 설치  (0) 2021.05.12
[git] fatal: Not a valid object name: 'master'.  (0) 2021.03.31
[git] merge vs rebase  (0) 2021.03.31
Comments