yolov5m / docker-compose.yml
Duy
duy
74552c9
raw
history blame contribute delete
310 Bytes
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