init commit

This commit is contained in:
will Farrell
2016-07-07 12:37:46 -06:00
commit 655e594684
3 changed files with 27 additions and 0 deletions

19
README.md Normal file
View File

@@ -0,0 +1,19 @@
# ping
## ENV
- `HOSTNAME` Server you would liek to continuously ping
- `TIMEOUT` Number of seconds between timeouts
## docker-compose.yml
```yml
version: "2"
services:
ping:
image: watsco/ping
restart: always
environment:
HOSTNAME: "10.0.0.61"
TIMEOUT: 300
```