Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
RTSP_CAMERA_IP=

# Model Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
RTSP_CAMERA_IP=

# Model Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
RTSP_CAMERA_IP=

# Model Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
RTSP_CAMERA_IP=

# Model Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
RTSP_CAMERA_IP=

# Model Registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
depends_on:
model_registry:
condition: service_healthy
image: intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
image: ${DLSTREAMER_PIPELINE_SERVER_IMAGE}
container_name: dlstreamer-pipeline-server
hostname: dlstreamer-pipeline-server
networks:
Expand Down
4 changes: 3 additions & 1 deletion metro-ai-suite/image-based-video-search/.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# General
DOCKER_REGISTRY=
DOCKER_REGISTRY=
# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
2 changes: 1 addition & 1 deletion metro-ai-suite/image-based-video-search/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ services:
timeout: 10s
retries: 3
dlstreamer-pipeline-server:
image: ${DOCKER_REGISTRY}intel/dlstreamer-pipeline-server:3.1.0-ubuntu22
image: ${DLSTREAMER_PIPELINE_SERVER_IMAGE}
hostname: dlstreamer-pipeline-server
container_name: ibvs-dlstreamer-pipeline-server
read_only: true
Expand Down
4 changes: 4 additions & 0 deletions metro-ai-suite/metro-vision-ai-app-recipe/.env
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
# install.sh <APP_NAME> [HOST_IP] e.g. $ install.sh smart-parking 10.10.10.10
# This is the IP address of the host machine where the application will run.
HOST_IP=0.0.0.0

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:3.1.0-ubuntu24

# This variable identifies the name of the application to be used.
# It should match the name of the application directory in the metro-ai-suite.
# Supported applications: "smart-parking", "loitering-detection", "smart-intersection"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ services:
]

dlstreamer-pipeline-server:
image: intel/dlstreamer-pipeline-server:3.1.0-ubuntu24
image: ${DLSTREAMER_PIPELINE_SERVER_IMAGE}
networks:
- scenescape
privileged: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services:
restart: on-failure:5

dlstreamer-pipeline-server:
image: intel/dlstreamer-pipeline-server:3.1.0-ubuntu24
image: ${DLSTREAMER_PIPELINE_SERVER_IMAGE}
container_name: dlstreamer-pipeline-server
environment:
- http_proxy=${http_proxy}
Expand Down