mailer
mailer copied to clipboard
Bug: Docker Container does not act on Signal
Steps to reproduce
- Launch a docker container:
docker build -t mailer .
docker run -t mailer
- Try to stop it by hitting
Control + C
(on Mac)
Expected
It stops the container
Actual
Nothing happens.
Workaround
Execute docker stop $(docker ps -q --filter ancestor=mailer)
from a different terminal.