OSX 10.11.3 Install gitlab server using docker

限于喜欢 提交于 2020-01-03 03:34:14

问题


My English not good, sorry! I install gitlab server using docker.

First I install Docker Toolbox,and then I follow the steps below:

Step 1. Launch a postgresql container

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-12

Step 2. Launch a redis container

docker run --name gitlab-redis -d \

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

Step 3. Launch the gitlab container

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' \
--env 'GITLAB_SECRETS_DB_KEY_BASE=long-and-random-alpha-numeric-string' \
--volume /srv/docker/gitlab/gitlab:/home/git/data \
sameersbn/gitlab:8.4.2

After the end,I can by http://192.168.99.100:10080 access to gitlab server, and can create a project, but I can't through the http://localhost:10080 access to gitlab server, others can not upload and download, should not do port forwarding, I should how to do?


回答1:


should not do port forwarding

Well actually yuo should do a port-forward 10080 to your actual host (Windows or Mac) through the VM which hosts the boot2docker-based Linux.
See "Connect to a Service running inside a docker container from outside"

VBoxManage controlvm "default" natpf1 "tcp-port10080,tcp,,10080,,10080"
VBoxManage controlvm "default" natpf1 "udp-port10080,udp,,10080,,10080"

(Replace default with the name of your docker-machine: see docker-machine ls)



来源:https://stackoverflow.com/questions/35126652/osx-10-11-3-install-gitlab-server-using-docker

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!