mirror of
https://github.com/azaion/detections.git
synced 2026-04-23 01:06:31 +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
19 lines
380 B
YAML
19 lines
380 B
YAML
name: detections-jetson
|
|
|
|
services:
|
|
detections:
|
|
image: ${REGISTRY:-docker.azaion.com}/detections-jetson:${TAG:-latest}
|
|
ports:
|
|
- "8080:8080"
|
|
runtime: nvidia
|
|
environment:
|
|
LOADER_URL: ${LOADER_URL}
|
|
ANNOTATIONS_URL: ${ANNOTATIONS_URL}
|
|
env_file: .env
|
|
volumes:
|
|
- detections-logs:/app/Logs
|
|
shm_size: 512m
|
|
|
|
volumes:
|
|
detections-logs:
|