Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 315 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 315 Bytes

Minimal app with health check

Exploring health checks

Depoyment

Docker

Execute in console:

docker run --name health -p 127.0.0.1:80:80/tcp -d mrjobzzz/healthservice:1.0.2 

Using

Make request to health endpoint:

curl 127.0.0.1/health

Respone:

{
    "status": "OK"
}