Skip to content

Fix indentation for docker run runner example

Greg Myers requested to merge docs-runner-docker-run-example-indent into main

What does this MR do?

Fixes indentation of example to docker run Gitlab Runner image.

Why was this MR needed?

There's four extra, unnecessary spaces to the left of the command example when copied.

Before:

   docker run -d --name gitlab-runner --restart always \
     -v /srv/gitlab-runner/config:/etc/gitlab-runner \
     -v /var/run/docker.sock:/var/run/docker.sock \
     gitlab/gitlab-runner:latest

After:

docker run -d --name gitlab-runner --restart always \
 -v /srv/gitlab-runner/config:/etc/gitlab-runner \
 -v /var/run/docker.sock:/var/run/docker.sock \
 gitlab/gitlab-runner:latest

What's the best way to test this MR?

What are the relevant issue numbers?

Edited by Greg Myers

Merge request reports