init
This commit is contained in:
15
dummyhttpserver/docker-compose.yml
Normal file
15
dummyhttpserver/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user