Skip to content

Commit 49b0aca

Browse files
authored
Bug fix (#1990)
1 parent 66bed99 commit 49b0aca

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

metro-ai-suite/live-video-analysis/live-video-alert-agent/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ WORKDIR /app
1818
COPY --from=builder /usr/local/lib/python3.12/site-packages /usr/local/lib/python3.12/site-packages
1919
COPY --from=builder /usr/local/bin /usr/local/bin
2020
COPY --chown=appuser:appuser src/ ./src/
21-
COPY --chown=appuser:appuser resources/ ./resources/
2221

2322
USER appuser
2423
EXPOSE 9000

metro-ai-suite/live-video-analysis/live-video-alert-agent/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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}
55
services:
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

metro-ai-suite/live-video-analysis/live-video-alert-agent/docs/user-guide/get-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

7777
6. **Access the Dashboard**:
@@ -117,7 +117,7 @@ docker compose down
117117
docker 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
130130
docker 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

metro-ai-suite/live-video-analysis/live-video-alert-agent/docs/user-guide/system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)