File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed
metro-ai-suite/live-video-analysis/live-video-alert-agent Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ WORKDIR /app
1818COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
1919COPY --from=builder /usr/local/bin /usr/local/bin
2020COPY --chown=appuser:appuser src/ ./src/
21- COPY --chown=appuser:appuser resources/ ./resources/
2221
2322USER appuser
2423EXPOSE 9000
Original file line number Diff line number Diff line change 11# Copyright (C) 2025 Intel Corporation
22# SPDX-License-Identifier: Apache-2.0
33
4- name : ${PROJECT_NAME:-live-video-alert}
4+ name : ${PROJECT_NAME:-live-video-alert-agent }
55services :
66 ovms-init :
77 image : busybox:latest
@@ -54,10 +54,10 @@ services:
5454 start_period : 300s
5555 network_mode : host
5656
57- live-video-alert :
57+ live-video-alert-agent :
5858 image : ${REGISTRY:-}live-video-alert:${TAG:-latest}
5959 build : .
60- container_name : live-video-alert
60+ container_name : live-video-alert-agent
6161 restart : unless-stopped
6262 ports :
6363 - " ${PORT:-9000}:${PORT:-9000}"
@@ -73,7 +73,7 @@ services:
7373 - MODEL_NAME=${MODEL_NAME:-Phi-3.5-Vision}
7474 - PORT=${PORT:-9000}
7575 volumes :
76- - ./resources:/app /resources
76+ - ./resources:/temp /resources
7777 depends_on :
7878 ovms :
7979 condition : service_healthy
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ This guide covers the rapid deployment of the Live Video Alert Agent system usin
7171
7272 View application logs:
7373 ` ` ` bash
74- docker logs agentic-nvr
74+ docker logs live-video-alert-agent
7575 ` ` `
7676
77776. ** Access the Dashboard** :
@@ -117,7 +117,7 @@ docker compose down
117117docker compose restart
118118
119119# Restart only the application (VLM service keeps running)
120- docker compose restart agentic-nvr
120+ docker compose restart live-video-alert-agent
121121```
122122
123123### Viewing Logs
@@ -130,7 +130,7 @@ docker compose logs -f
130130docker logs -f ovms-vlm
131131
132132# Application logs
133- docker logs -f agentic-nvr
133+ docker logs -f live-video-alert-agent
134134```
135135
136136### Clearing Model Cache
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ This page summarizes the recommended environment for running Live Video Alert.
1919
2020- Docker Engine and Docker Compose
2121- Intel® Graphics compute runtime (if using Intel GPU for inference acceleration)
22- - RTSP source reachable from the ` live-video-alert ` container (optional, can be added via UI)
22+ - RTSP source reachable from the ` live-video-alert-agent ` container (optional, can be added via UI)
2323
2424## Network / Ports
2525
You can’t perform that action at this time.
0 commit comments