fix: use host network instead of creating it's own for test runners

This commit is contained in:
buffet 2024-05-12 17:55:59 +02:00
parent 5992ed1b6d
commit cf4a15b83e

View file

@ -20,7 +20,10 @@ in {
url = config.services.forgejo.settings.server.ROOT_URL; url = config.services.forgejo.settings.server.ROOT_URL;
tokenFile = config.age.secrets.kitchen-runner-token.path; tokenFile = config.age.secrets.kitchen-runner-token.path;
labels = ["docker" "ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest"]; labels = ["docker" "ubuntu-latest:docker://ghcr.io/catthehacker/ubuntu:act-latest"];
settings.log.level = "warn"; settings = {
log.level = "warn";
container.network = "host";
};
}); });
}; };