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

11 lines
166 B
YAML
Raw Permalink 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:
- "9008:8080"
init: true
tty: true