ansible/playbooks/apps/files/test_headers/docker-compose.yaml

11 lines
176 B
YAML
Raw Normal View History

2024-10-11 00:24:06 +02:00
services:
app:
image: python:3.13-slim
command: python /app/app.py
volumes:
- ./:/app
ports:
2024-10-15 19:00:21 +02:00
- "127.0.0.1:9008:8080"
init: true
tty: true