[AZ-180] Update Jetson deployment documentation and remove obsolete task file

- Added Jetson-specific deployment instructions to `deploy_scripts.md`, detailing prerequisites and service management.
- Updated `deploy_status_report.md` to reflect the completion of the AZ-180 cycle and the readiness of Jetson support.
- Removed outdated task documentation for Jetson Orin Nano support from the todo list.

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-02 16:58:57 +03:00
parent 3984507221
commit 2c35e59a77
9 changed files with 377 additions and 7 deletions
+48
View File
@@ -0,0 +1,48 @@
name: detections-demo-jetson
services:
loader:
build:
context: ./e2e/mocks/loader
ports:
- "8081:8080"
volumes:
- ./demo/models:/models
networks:
- demo-net
annotations:
build:
context: ./e2e/mocks/annotations
ports:
- "8082:8081"
networks:
- demo-net
detections:
build:
context: .
dockerfile: Dockerfile.jetson
ports:
- "8080:8080"
runtime: nvidia
environment:
LOADER_URL: http://loader:8080
ANNOTATIONS_URL: http://annotations:8081
CLASSES_JSON_PATH: /app/classes.json
volumes:
- ./demo/models/classes.json:/app/classes.json:ro
- detections-logs:/app/Logs
shm_size: 512m
depends_on:
- loader
- annotations
networks:
- demo-net
networks:
demo-net:
driver: bridge
volumes:
detections-logs: