Use Stop When
You want the process to handle shutdown hooks, flush state, or exit cleanly.
You are dealing with normal service lifecycle behavior.
The difference between graceful container shutdown and immediate termination.
`docker stop` asks the container to shut down gracefully and waits before forcing termination. `docker kill` sends an immediate signal, which is faster but less graceful.
You want the process to handle shutdown hooks, flush state, or exit cleanly.
You are dealing with normal service lifecycle behavior.
The container is unresponsive and graceful shutdown is not working.
You need fast termination during debugging or cleanup.
Stop is graceful. Kill is immediate.