Files
docker-ping/README.md
2023-03-10 11:51:22 +01:00

17 lines
315 B
Markdown

# docker-ping
## ENV
- `HOSTNAME` Server you would like to continuously ping [ default=localhost ]
- `TIMEOUT` Number of seconds between timeouts [ default=300 ]
## docker-compose.yml
```yml
...
services:
ping:
image: jpedrosa/docker-ping
environment:
HOSTNAME: "10.0.0.61"
TIMEOUT: 300
```