mirror of
https://github.com/Crocmagnon/ansible.git
synced 2025-01-10 15:12:49 +01:00
10 lines
173 B
YAML
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
|