This commit is contained in:
Christoph K.
2026-03-11 16:26:11 +01:00
commit 402395c856
9 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
services:
dummyhttpserver:
image: python:3.13-alpine
container_name: dummyhttpserver
restart: unless-stopped
ports:
- "10001:8080"
volumes:
- ./server.py:/app/server.py:ro
- ./example.json:/data/example.json:ro
working_dir: /app
command: python server.py
environment:
- DATA_FILE=/data/example.json
- PORT=8080