Trying to install a gitlab runner on my windows machine inside a docker container Using docker run -d --name gitlab-runner --restart always \ -v ${PWD}/gitla /gitlab-runner \ -v /var/run/docker.sock:/var/run/docker.sock \ gitlab/gitlab-runner:latest
I'm following the official docs but nothing refers to windows https://docs.gitlab.com/runner/install/docker.html
What's the correct way to set-up a docker container to execute a gitlab runner?
Thanks in advance!