Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 415 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 415 Bytes

docker-ping

ENV

  • HOSTNAME Server you would like to continuously ping [ default=localhost ]
  • TIMEOUT Number of seconds between timeouts [ default=300 ]

docker-compose.yml

...
services:
  ping:
    image: detlearsom/ping
    environment:
      HOSTNAME: "10.0.0.61"
      TIMEOUT: 300

Acknowledgements

This container is adapted from https://github.com/willfarrell/docker-ping.git.