This repo serves as a very simple containerized service, complete with health check.
This service has no persistent storage requirements or external dependencies.
- The default endpoint,
/, displays a randomly generated ascii-art maze. You can adjust thewidthand/orheightof the maze via GET parameters. - The healthcheck endpoint
/healthchecksimply returns the word "Healthy" with a 200 status code.
docker build -t sample-service .
docker run -p 5000:5000 -it sample-service
You can then go to http://localhost:5000 in your browser to view the service.