Clean push: Removed heavy files & added only latest snapshot

This commit is contained in:
2025-07-26 05:16:12 +05:30
commit acf84e8767
250 changed files with 58564 additions and 0 deletions

32
docker-compose.yml Normal file
View File

@@ -0,0 +1,32 @@
version: "3.8"
services:
detector:
build:
context: .
dockerfile: Dockerfile
image: traffic-detector:latest
environment:
- MODEL_PATH=/app/yolo11x.xml
volumes:
- ./models:/app/models
command: ["python", "detection_openvino.py"]
deploy:
resources:
limits:
memory: 2g
app:
build:
context: .
dockerfile: Dockerfile
image: traffic-app:latest
depends_on:
- detector
environment:
- DETECTOR_API=http://detector:8000
command: ["python", "qt_app_pyside/main.py"]
ports:
- "8501:8501"
deploy:
resources:
limits:
memory: 2g