# Phase 1 MVP compose: API only. # Phase 4 will add redis, postgres, minio, and worker services. services: api: build: context: . dockerfile: Dockerfile image: ocr-sprint-service:dev container_name: ocr-sprint-api ports: - "8000:8000" environment: APP_ENV: local APP_LOG_LEVEL: INFO OCR_USE_GPU: "false" STORAGE_LOCAL_DIR: /app/storage volumes: - ./storage:/app/storage - paddle-models:/home/app/.paddleocr restart: unless-stopped volumes: paddle-models: