diff options
author | Niels Keurentjes <niels@keurentjes.nl> | 2016-07-10 23:35:10 +0000 |
---|---|---|
committer | Niels Keurentjes <niels@keurentjes.nl> | 2016-07-10 23:35:10 +0000 |
commit | 51ef233e25d6b9cfed16b8b3a5b532e429993dec (patch) | |
tree | e96bbd0cd238043aeb3d380ca3dec2a6c77063fa /doc/ci | |
parent | df49492fc011bd74ebaa4cb82bd85252127859a0 (diff) | |
download | gitlab-ce-51ef233e25d6b9cfed16b8b3a5b532e429993dec.tar.gz |
Fix docker.sock reference in config.toml
Mapping was omitted so it would just create a temp volume.
Diffstat (limited to 'doc/ci')
-rw-r--r-- | doc/ci/docker/using_docker_build.md | 2 |
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 ``` |