Welcome to OGeek Q&A 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 Reply

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://


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...