webserver: Use SIGKILL instead of SIGTERM to kill the container

See https://github.com/SergioBenitez/Rocket/issues/180.
This commit is contained in:
Tristan Daniël Maat 2021-05-16 01:35:13 +01:00
parent 458f6c7f7b
commit a25c2ffc9d
Signed by: tlater
GPG key ID: 49670FD774E43268

View file

@ -29,6 +29,9 @@
]; ];
ExposedPorts = { "3002" = { }; }; ExposedPorts = { "3002" = { }; };
User = "${uid}:${gid}"; User = "${uid}:${gid}";
# Will become SIGTERM with the next rocket release
StopSignal = "SIGKILL";
}; };
}; };