version: "3.8" services: app: build: . container_name: python_app restart: always ports: - "8000:8000" environment: - PYTHONUNBUFFERED=1 volumes: - .:/app command: python main.py