docker-ci-runner: fix stop hanging for 120s

This commit is contained in:
teutat3s 2023-04-15 21:13:45 +02:00
parent 029be00eab
commit 24587194e9
Signed by untrusted user: teutat3s
GPG key ID: 4FA1D3FA524F22C1

View file

@ -102,5 +102,10 @@ in
};
};
};
# Fix container not stopping correctly and holding the system 120s upon
# shutdown / reboot
systemd.services.docker-drone-exec-runner.preStop = ''
docker stop drone-exec-runner
'';
};
}