Pim Kunis
a7d403eb5b
Some checks failed
/ blog-pim (push) Failing after 1m46s
Allow mounting all volumes in Forgejo actions
34 lines
562 B
Nix
34 lines
562 B
Nix
{
|
|
log.level = "trace";
|
|
host.workdir_parent = "";
|
|
|
|
runner = {
|
|
file = "/data/.runner";
|
|
capacity = 4;
|
|
env_file = ".env";
|
|
timeout = "3h";
|
|
insecure = false;
|
|
fetch_timeout = "5s";
|
|
fetch_interval = "2s";
|
|
labels = [ ];
|
|
envs = { };
|
|
};
|
|
|
|
cache = {
|
|
enabled = true;
|
|
dir = "";
|
|
host = "";
|
|
port = 0;
|
|
external_server = "";
|
|
};
|
|
|
|
container = {
|
|
network = "";
|
|
privileged = false;
|
|
options = "";
|
|
workdir_parent = "";
|
|
valid_volumes = [ "**" ];
|
|
docker_host = "";
|
|
force_pull = false;
|
|
};
|
|
}
|