services: site: container_name: lerafoxqueen build: . working_dir: /code/app image: LeraFoxQueen ports: - "8001:8001" volumes: - .:/app:ro - ./datings.db:/app/datings.db:rw environment: - WATCHFILES_FORCE_POLLING=true command: fastapi run main_package/app.py --reload --port 8001 --proxy-headers restart: on-failure