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