services: backend: build: ./backend ports: - "8000:8000" volumes: - ./backend:/app env_file: - ./.env command: poetry run uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload frontend: build: ./frontend ports: - "5173:5173" volumes: - ./frontend:/app - /app/node_modules env_file: - ./.env command: pnpm dev --host 0.0.0.0 --port 5173 depends_on: - backend