Skip to content
Snippets Groups Projects
Commit 51ef233e authored by Niels Keurentjes's avatar Niels Keurentjes
Browse files

Fix docker.sock reference in config.toml

Mapping was omitted so it would just create a temp volume.
parent df49492f
Branches
Tags
1 merge request!5172Fix docker.sock reference in config.toml
Loading
@@ -188,7 +188,7 @@ In order to do that, follow the steps:
Loading
@@ -188,7 +188,7 @@ In order to do that, follow the steps:
image = "docker:latest" image = "docker:latest"
privileged = false privileged = false
disable_cache = false disable_cache = false
volumes = ["/var/run/docker.sock", "/cache"] volumes = ["/var/run/docker.sock:/var/run/docker.sock", "/cache"]
[runners.cache] [runners.cache]
Insecure = false Insecure = false
``` ```
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment