Fix docker.sock reference in config.toml
Mapping was omitted so it would just create a temp volume.
This commit is contained in:
parent
df49492fc0
commit
51ef233e25
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue