httping-docker
httping-docker copied to clipboard
Ping with HTTP requests, built directly from master
Docker image of httping
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.
Basic example at docker CLI
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
Better example
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
Use the shell GUI
add a -it to run command and a -K to httping
docker run -it --rm bretfisher/httping -i .1 -GsYK https://www.google.com
License
This repository and Dockerfile are MIT licensed. All upstream software including httping are licensed by their owners.