mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 09:26:32 +00:00
[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:
@@ -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:
|
||||
Reference in New Issue
Block a user