Fernando Junior
Fernando Junior

Reputation: 49

Docker windows 10 with gitlab

Good afternoon,

I have a doubt.

My Operating System is Windows 10, I have docker installed on it and would like to by the ubuntu with gitlab.

It is possible? I tried to do this but I had a problem communicating. I have seen in some places that it does not have support.

Upvotes: 4

Views: 732

Answers (1)

Nicolas Pepinster
Nicolas Pepinster

Reputation: 6221

On Windows 10 with docker, you can start the omnibus gitlab version.

Pull the image and run it with these arguments :

docker run --detach --hostname HOSTNAME --publish 443:443 --publish 80:80 --name gitlab --restart always gitlab/gitlab-ce:latest

Upvotes: 2

Related Questions