mirror of
https://github.com/azaion/detections.git
synced 2026-04-22 22:36:32 +00:00
26900d0aee
- Added image specifications for services in `docker-compose.demo-jetson.yml` and `docker-compose.jetson.yml` to streamline deployment. - Updated `Dockerfile.gpu` to use the development version of the CUDA runtime for enhanced compatibility. - Modified `Dockerfile.jetson` to switch to a newer JetPack base image and adjusted the requirements file to include additional dependencies for improved functionality. - Removed obsolete deployment scripts and calibration cache generation script to clean up the project structure. Made-with: Cursor
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: detections-demo-jetson
|
|
|
|
services:
|
|
loader:
|
|
image: ${REGISTRY:-docker.azaion.com}/detections-loader-mock:${TAG:-latest}
|
|
build:
|
|
context: ./e2e/mocks/loader
|
|
ports:
|
|
- "8081:8080"
|
|
volumes:
|
|
- ./demo/models:/models
|
|
networks:
|
|
- demo-net
|
|
|
|
annotations:
|
|
image: ${REGISTRY:-docker.azaion.com}/detections-annotations-mock:${TAG:-latest}
|
|
build:
|
|
context: ./e2e/mocks/annotations
|
|
ports:
|
|
- "8082:8081"
|
|
networks:
|
|
- demo-net
|
|
|
|
detections:
|
|
image: ${REGISTRY:-docker.azaion.com}/detections-jetson:${TAG:-latest}
|
|
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:
|