docker容器部署gitlab:

 1 sudo docker run --detach \
 2     --hostname git.gitlab.com \
 3     --net=host \
 4     --publish 9443:443 --publish 9080:80 --publish 9022:22 \
 5     --name gitlab \
 6     --restart always \
 7     --volume /data0/gitlab/config:/etc/gitlab \
 8     --volume /data0/gitlab/logs:/var/log/gitlab \
 9     --volume /data0/gitlab/data:/var/opt/gitlab \
10     gitlab/gitlab-ce:latest

 

  

相关文章:

  • 2021-10-18
  • 2022-01-10
  • 2021-07-02
  • 2021-11-22
  • 2021-08-07
  • 2022-03-10
猜你喜欢
  • 2021-07-13
  • 2022-03-04
  • 2022-01-19
  • 2021-11-10
相关资源
相似解决方案