File size: 221 Bytes
484aa33
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
version: '3'
services:
  yolov8_fastapi:
    build: .
    restart: "always"
    volumes:
    - ./:/app
    working_dir: /app
    ports:
      - "8001:8001"
    command: uvicorn main:app --reload --host 0.0.0.0 --port 8001