Fix docker.sock reference in config.toml

Mapping was omitted so it would just create a temp volume.
This commit is contained in:
Niels Keurentjes 2016-07-10 23:35:10 +00:00
parent df49492fc0
commit 51ef233e25
1 changed files with 1 additions and 1 deletions

View File

@ -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
```