https://github.com/thiht/sighup
A Docker image responding to SIGHUP signals
https://github.com/thiht/sighup
docker docker-gen sighup
Last synced: 12 days ago
JSON representation
A Docker image responding to SIGHUP signals
- Host: GitHub
- URL: https://github.com/thiht/sighup
- Owner: Thiht
- License: mit
- Created: 2017-12-02T14:53:01.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-02T15:25:39.000Z (over 8 years ago)
- Last Synced: 2025-03-15T05:52:45.899Z (about 1 year ago)
- Topics: docker, docker-gen, sighup
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sighup [:whale:](https://hub.docker.com/r/thiht/sighup/ "thiht/sighup")
This container logs the current date when it receives the `SIGHUP` signal.
## Why?
I needed something simple to perform `SIGHUP` notification tests with [docker-gen](https://github.com/jwilder/docker-gen).
## Build
```sh
$ docker build -t thiht/sighup:latest .
```
## Run
```sh
$ docker run -d --name sighup thiht/sighup:latest
```
## Test
```sh
$ docker kill -s HUP sighup
$ docker logs sighup
Sat Dec 2 14:43:23 UTC 2017
```
## License
See the [LICENSE file](./LICENSE).