1 2 3 4 5 6 7 8 9 10 11 12 13
| docker run \ --detach \ --publish 8443:443 \ # 映射https端口, 不过本文中没有用到 --publish 8090:80 \ # 映射宿主机8090端口到容器中80端口 --publish 8022:22 \ # 映射22端口, 可不配 --name gitlab \ --restart always \ --hostname 192.168.123.123 \ # 局域网宿主机的ip, 如果是公网主机可以写域名 -v /home/software/gitlab/etc:/etc/gitlab \ # 挂载gitlab的配置文件 -v /home/software/gitlab/logs:/var/log/gitlab \ # 挂载gitlab的日志文件 -v /home/software/gitlab/data:/var/opt/gitlab \ # 挂载gitlab的数据 -v /etc/localtime:/etc/localtime:ro \ # 保持宿主机和容器时间同步 --privileged=true registry.cn-hangzhou.aliyuncs.com/lab99/gitlab-ce-zh # 在容器中能以root身份执行操作
|