mirror of
https://github.com/Crocmagnon/ansible.git
synced 2024-11-22 07:18:02 +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
|