sighup 🐳
This container logs the current date when it receives the SIGHUP
signal.
I needed something simple to perform SIGHUP
notification tests with docker-gen.
$ docker build -t thiht/sighup:latest .
$ docker run -d --name sighup thiht/sighup:latest
$ docker kill -s HUP sighup
$ docker logs sighup
Sat Dec 2 14:43:23 UTC 2017
See the LICENSE file.