mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 08:56:32 +00:00
2c35e59a77
- 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
49 lines
877 B
YAML
49 lines
877 B
YAML
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:
|