OCR_NUMBERPLATE_YOLO / docker-compose.yml
Pujan-Dev's picture
fix: update Dockerfile and add docker-compose.yml for improved container setup
6e2d39e
raw
history blame contribute delete
248 Bytes
version: '3.8'
services:
app:
build:
context: .
dockerfile: Dockerfile
ports:
- "7860:7860"
volumes:
- .:/app
environment:
- PYTHONUNBUFFERED=1
command: uvicorn app:app --host 0.0.0.0 --port 7860