Audit · 6 min
The container that takes ten seconds to stop
Generated when asked for a Dockerfile entrypoint that runs a server with some setup first.
#!/bin/sh set -e echo "running migrations..." ./migrate echo "starting server..." ./server
Before it runs
The orchestrator sends SIGTERM to stop the container. What happens?