The repo for the counter service Python app.
Python service called "webapp-counter-service."
It maintains a web page with a counter for the number of POST requests it has served and return it for every GET request it gets.
Start the application by running:
docker compose up --build.
The application will be available at http://localhost:80.
First, build the image, e.g.: docker build -t myapp ..
Then, push it into registry, e.g. docker push myregistry.com/myapp.
Consult Docker's getting started docs for more detail on building and pushing.