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

Categories

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.3k views
Welcome To Ask or Share your Answers For Others

1 Answer

Your docker container is exposed on :40443 port

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

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...