summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Keurentjes <niels@keurentjes.nl>2016-07-10 23:35:10 +0000
committerNiels Keurentjes <niels@keurentjes.nl>2016-07-10 23:35:10 +0000
commit51ef233e25d6b9cfed16b8b3a5b532e429993dec (patch)
treee96bbd0cd238043aeb3d380ca3dec2a6c77063fa
parentdf49492fc011bd74ebaa4cb82bd85252127859a0 (diff)
downloadgitlab-ce-51ef233e25d6b9cfed16b8b3a5b532e429993dec.tar.gz
Fix docker.sock reference in config.toml
Mapping was omitted so it would just create a temp volume.
-rw-r--r--doc/ci/docker/using_docker_build.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/docker/using_docker_build.md b/doc/ci/docker/using_docker_build.md
index 7f83f846454..ee924323d96 100644
--- a/doc/ci/docker/using_docker_build.md
+++ b/doc/ci/docker/using_docker_build.md
@@ -188,7 +188,7 @@ In order to do that, follow the steps:
image = "docker:latest"
privileged = false
disable_cache = false
- volumes = ["/var/run/docker.sock", "/cache"]
+ volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
[runners.cache]
Insecure = false
```