Skip to content

dmoralesm/http-probe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Probe

This is a simple http server created with Deno to run it in a remote location in order to hit and check that is reachable through internet. It responds with an HTTP Status Code 200 and a JSON response:

{
  "live": "ok"
}

Build container locally

docker build --rm -t http-probe .

Run container locally

docker run -itd -p 8000:8000 --restart always http-probe

Get container from Docker Hub

docker run -itd -p 8000:8000 --restart always davidmna/http-probe

Use --restart flag to start container automatically after a Docker restart.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published