An open API service indexing awesome lists of open source software.

https://github.com/willfarrell/docker-ping

Container to continuously ping a server
https://github.com/willfarrell/docker-ping

Last synced: 10 months ago
JSON representation

Container to continuously ping a server

Awesome Lists containing this project

README

          

# 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: willfarrell/ping
environment:
HOSTNAME: "10.0.0.61"
TIMEOUT: 300
```