diff --git a/nixos/tests/gitlab/runner/podman-runner/default.nix b/nixos/tests/gitlab/runner/podman-runner/default.nix index bb71e44fbd9a..5170266438b6 100644 --- a/nixos/tests/gitlab/runner/podman-runner/default.nix +++ b/nixos/tests/gitlab/runner/podman-runner/default.nix @@ -413,6 +413,11 @@ in "${name}-container" = { imageFile = jobImages.${name}; image = "${imageNames.${name}}:latest"; + extraOptions = [ + "--docker-volumes-from" + "nix-daemon-container:ro" + ]; + dependsOn = [ "nix-daemon-container" ]; cmd = [ "true" ]; }; }) jobImages);