ansible/playbooks/apps/files/test_headers/docker-compose.yaml
Gabriel Augendre c6b897f218
Some checks failed
/ run ansible (push) Has been cancelled
add watchtower
2024-10-17 18:14:50 +02:00

10 lines
173 B
YAML

services:
app:
image: python:3-slim
command: python /app/app.py
volumes:
- ./:/app
ports:
- "127.0.0.1:9008:8080"
init: true
tty: true