Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/ci
diff options
context:
space:
mode:
authorMark Pundsack <markpundsack@users.noreply.github.com>2016-06-08 21:10:06 +0300
committerMark Pundsack <markpundsack@users.noreply.github.com>2016-06-14 08:06:13 +0300
commite97af053eb24391df926cb7f7ca20d67a4ff03d0 (patch)
tree9703a25ecdd06b2f813711907c46b557edd2fe51 /doc/ci
parentdb656a3987131816d47897b2424821b19ca147b0 (diff)
Fix docker volume
Diffstat (limited to 'doc/ci')
-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 aae37010508..5df1fdd84c7 100644
--- a/doc/ci/docker/using_docker_build.md
+++ b/doc/ci/docker/using_docker_build.md
@@ -183,7 +183,7 @@ In order to do that, follow the steps:
image = "docker:latest"
privileged = false
disable_cache = false
- volumes = ["/usr/local/bin/docker:/usr/bin/docker", "/cache"]
+ volumes = ["/var/run/docker.sock", "/cache"]
[runners.cache]
Insecure = false
```