Files
docker-ping/README.md
will Farrell 064f90c3ba fix typos
2016-07-07 12:39:55 -06:00

19 lines
303 B
Markdown

# docker-ping
## ENV
- `HOSTNAME` Server you would like to continuously ping
- `TIMEOUT` Number of seconds between timeouts
## docker-compose.yml
```yml
version: "2"
services:
ping:
image: willfarrell/ping
restart: always
environment:
HOSTNAME: "10.0.0.61"
TIMEOUT: 300
```