Previously, Docker would terminate the container when it's stop configuration was configured to send a signal to the container. This was due to Docker's API wanting the value as a duration string (`1s`) rather than a number, so our value of `-1` was being formatted to `0s` rather than `-1s` like we needed. Closes https://github.com/pterodactyl/panel/issues/4555