Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

run GitLab with docker image in windows 10 on localhost

I have installed a docker image "gitlab/gitlab-ce" on windows 10 and I try to run with following command.

docker run --detach --hostname https://localhost/ --publish 40443:80 --name GitLab --restart always --volume d:gitlabconfig:/etc/gitlab --volume d:gitlablogs:/var/log/gitlab --volume d:gitlabdata:/var/opt/gitlab gitlab/gitlab-ce:latest

but when it doesn't accessible in browser. "This site can’t be reached. localhost unexpectedly closed the connection."

I don't known what is wrong here in GitLab document the host name is "gitlab.example.com" and I don't known what is domain refer to.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your docker container is exposed on :40443 port

Ref.: https://docs.docker.com/config/containers/container-networking/

P.S. hostname should be without https://


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...