74552c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: '3' services: fastapi: build: context: . dockerfile: Dockerfile ports: - "8001:8001" command: - "uvicorn" - "api:api" - "--reload" - "--port=8001" - "--host=0.0.0.0" volumes: - .:/app # Replace with the path to your local code