webserver: Use SIGKILL instead of SIGTERM

This is necessary because rocket 0.4 does not support SIGTERM.
This commit is contained in:
Tristan Daniël Maat 2021-05-17 00:02:41 +01:00
parent 343c7fcc36
commit a24c68d9db
Signed by: tlater
GPG key ID: 49670FD774E43268

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"
# This can change with rocket 0.5.
"--stop-signal=SIGKILL"
];
}; };
} }