ansible/playbooks/apps/files/test_headers/docker-compose.yaml
Gabriel Augendre fe3cfeff25
Some checks are pending
/ run ansible (push) Waiting to run
open docker ports on localhost only
2024-10-15 19:00:21 +02:00

10 lines
176 B
YAML

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