docker-compose.yaml 248 B

123456789101112131415
  1. version: '3.8'
  2. services:
  3. app:
  4. build:
  5. context: .
  6. dockerfile: Dockerfile
  7. container_name: task-server-app
  8. ports:
  9. - "6060:6060"
  10. volumes:
  11. - .:/app
  12. environment:
  13. - PYTHONUNBUFFERED=1
  14. restart: always