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