Files
docker-ping/README.md

16 lines
310 B
Markdown
Raw Normal View History

2016-07-07 12:39:55 -06:00
# docker-ping
2016-07-07 12:37:46 -06:00
## ENV
2017-01-22 12:32:01 -07:00
- `HOSTNAME` Server you would like to continuously ping [ default=localhost ]
- `TIMEOUT` Number of seconds between timeouts [ default=300 ]
2016-07-07 12:37:46 -06:00
## docker-compose.yml
```yml
2017-01-22 12:32:01 -07:00
...
2016-07-07 12:37:46 -06:00
services:
ping:
2016-07-07 12:39:55 -06:00
image: willfarrell/ping
2016-07-07 12:37:46 -06:00
environment:
HOSTNAME: "10.0.0.61"
TIMEOUT: 300
```