docker gitlab环境搭建

docker下gitlab 搭建


下载 docker-compose.yml

wget https://raw.githubusercontent.com/sameersbn/docker-gitlab/master/docker-compose.yml

守护进程方式启动

docker-compose up -d

运行一个PostgreSQL容器

docker run --name gitlab-postgresql -d \

--env 'DB_NAME=gitlabhq_production' \

--env 'DB_USER=gitlab' --env 'DB_PASS=password' \

--volume /srv/docker/gitlab/postgresql:/var/lib/postgresql \

sameersbn/postgresql:9.4-2

运行redis容器

docker run --name gitlab-redis -d \

--volume /srv/docker/gitlab/redis:/var/lib/redis \

sameersbn/redis:latest

运行gitlalb容器

docker run --name gitlab -d \

--link gitlab-postgresql:postgresql --link gitlab-redis:redisio \

--publish 10022:22 --publish 10080:80 \

--env 'GITLAB_PORT=10080' --env 'GITLAB_SSH_PORT=10022' \

--volume /srv/docker/gitlab/gitlab:/home/git/data \

sameersbn/gitlab:7.13.1

成功安装后 在浏览器中输入 http://{服务器ip}:10080

用户名root

密码5iveL!fe

进入gitlab管理界面


docker gitlab环境搭建_第1张图片

参考文档

https://github.com/sameersbn/docker-gitlab

https://my.oschina.net/donhui/blog/484019

你可能感兴趣的:(docker gitlab环境搭建)