HTTP Server to expose a web directory to serve different files for a configurable amount of requests.
| Build | Status |
|---|---|
| python-server |
Start the server
docker-compose upWithout docker compose
docker build -t python-server .
docker run -it --rm -p 80:8000 -e "REQUEST_LIMIT=2" -v $PWD/web/:/usr/src/app/web --name running-server python-server