13 lines
210 B
YAML
13 lines
210 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
image: demo:latest
|
|
container_name: python_app
|
|
restart: always
|
|
ports:
|
|
- "8000:8000"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
command: python main.py
|