webserver: Use SIGKILL instead of SIGTERM #44

Manually merged
tlater merged 1 commit from tlater/rocket-sigkill into master 2021-05-17 00:26:20 +01:00
Showing only changes of commit 4c94932490 - Show all commits

View file

@ -34,6 +34,10 @@
ports = [ "3002:3002" ]; ports = [ "3002:3002" ];
volumes = [ "tlaternet-mail:/srv/mail" ]; volumes = [ "tlaternet-mail:/srv/mail" ];
extraOptions = [ "--hostname=tlater.net" ]; extraOptions = [
"--hostname=tlater.net"
# Rocket 0.4 doesn't support SIGTERM anyway, so SIGKILL is the cleanest exit possible.
"--stop-signal=SIGKILL"
];
}; };
} }