This container image is stored on docker hub: bretfisher/httping and in this GitHub repositories packages.
NOTE: This is based on the original httping project,
which has since been removed from GitHub.
I maintain a copy of the 2.5 version in the source
directory.
run a HTTPS ping against google every second until you hit ctrl-c or stop/kill the container
docker run --rm bretfisher/httping https://www.google.com
ping ever 100ms, use GET not HEAD, show status codes, use pretty colors
docker run --rm bretfisher/httping -i .1 -G -s -Y https://www.google.com
add a -it
to run command and a -K
to httping
docker run -it --rm bretfisher/httping -i .1 -GsYK https://www.google.com
This repository and Dockerfile are MIT licensed. All upstream software including httping are licensed by their owners.