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,7 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
RTSP_CAMERA_IP=

# MinIO service & client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
RTSP_CAMERA_IP=

# MinIO service & client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
RTSP_CAMERA_IP=

# MinIO service & client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
RTSP_CAMERA_IP=

# MinIO service & client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ HOST_IP=
REST_SERVER_PORT=8080

# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
RTSP_CAMERA_IP=

# MinIO service & client
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
- Download helm chart with the following command

```bash
helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0-rc3
helm pull oci://registry-1.docker.io/intel/pallet-defect-detection-reference-implementation --version 2.6.0
```

- Unzip the package using the following command

```bash
tar -xvf pallet-defect-detection-reference-implementation-2.6.0-rc3.tgz
tar -xvf pallet-defect-detection-reference-implementation-2.6.0.tgz
```

- Replace the helm directory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
Create a Docker file named `BalluffDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.

```dockerfile
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24

USER root

Expand All @@ -41,7 +41,7 @@ RUN chmod +x /home/pipeline-server/src-gst-gencamsrc/autogen.sh
RUN chmod +x /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh
RUN /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh

# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3 base image
# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24 base image
RUN apt-get update && apt-get install -y libwxgtk-webview3.2-dev

# For Ubuntu 22 with intel/dlstreamer-pipeline-server:3.1.0-ubuntu22, uncomment the line below and comment the above line
Expand All @@ -67,7 +67,7 @@ USER intelmicroserviceuser
Run the following command to build the image:

```bash
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff -f BalluffDockerfile .
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff -f BalluffDockerfile .
```

This command builds your Docker image using the steps defined above.
Expand All @@ -76,7 +76,7 @@ This command builds your Docker image using the steps defined above.

After the build completes, update .env and start the container:

> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff

```bash
docker compose up -d
Expand Down Expand Up @@ -111,7 +111,7 @@ cp .env_pallet-defect-detection .env
Update the `.env` file with the newly created image as below and modify any other required variables.

```bash
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
Create a Docker file named `BaslerDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.

```dockerfile
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24

USER root

Expand Down Expand Up @@ -53,7 +53,7 @@ USER intelmicroserviceuser
Run the following command to build the image:

```bash
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler -f BaslerDockerfile .
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler -f BaslerDockerfile .
```

This command builds your Docker image using the steps defined above.
Expand All @@ -62,7 +62,7 @@ This command builds your Docker image using the steps defined above.

After the build completes, update .env and start the container:

> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler

```bash
docker compose up -d
Expand Down Expand Up @@ -97,7 +97,7 @@ cp .env_pallet-defect-detection .env
Update the `.env` file with the newly created image as below and modify any other required variables.

```bash
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler
```

### Step 3: Run the Setup Script
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@

- Download helm chart with the following command

`helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0-rc3`
`helm pull oci://registry-1.docker.io/intel/pcb-anomaly-detection --version 1.2.0`
- unzip the package using the following command

`tar -xvf pcb-anomaly-detection-1.2.0-rc3.tgz`
`tar -xvf pcb-anomaly-detection-1.2.0.tgz`
- Replace the helm directory

`rm -rf helm && mv pcb-anomaly-detection helm`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@

- Download helm chart with the following command

`helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0-rc3`
`helm pull oci://registry-1.docker.io/intel/weld-porosity-sample-application --version 1.4.0`
- unzip the package using the following command

`tar -xvf weld-porosity-sample-application-1.4.0-rc3.tgz`
`tar -xvf weld-porosity-sample-application-1.4.0.tgz`
- Replace the helm directory

`rm -rf helm && mv weld-porosity-sample-application helm`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@

- Download helm chart with the following command

`helm pull oci://registry-1.docker.io/intel/worker-safety-gear-detection --version 1.2.0-rc3`
`helm pull oci://registry-1.docker.io/intel/worker-safety-gear-detection --version 1.2.0`
- unzip the package using the following command

`tar -xvf worker-safety-gear-detection-1.2.0-rc3.tgz`
`tar -xvf worker-safety-gear-detection-1.2.0.tgz`
- Replace the helm directory

`rm -rf helm && mv worker-safety-gear-detection helm`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
Create a Docker file named `BalluffDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.

```dockerfile
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24

USER root

Expand All @@ -46,7 +46,7 @@ RUN chmod +x /home/pipeline-server/src-gst-gencamsrc/autogen.sh
RUN chmod +x /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh
RUN /home/pipeline-server/install_gencamsrc_gstreamer_plugin.sh

# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3 base image
# For Ubuntu24 intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24 base image
RUN apt-get update && apt-get install -y libwxgtk-webview3.2-dev

# For Ubuntu 22 with intel/dlstreamer-pipeline-server:3.1.0-ubuntu22, uncomment the line below and comment the above line
Expand Down Expand Up @@ -74,7 +74,7 @@ USER intelmicroserviceuser
Run the following command to build the image:

```bash
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff -f BalluffDockerfile .
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff -f BalluffDockerfile .
```

This command builds your Docker image using the steps defined above.
Expand All @@ -85,7 +85,7 @@ This command builds your Docker image using the steps defined above.

After the build completes, update .env and start the container:

> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff

```bash
docker compose up -d
Expand Down Expand Up @@ -127,7 +127,7 @@ cp .env_worker-safety-gear-detection .env
Update the `.env` file with the newly created image as below and modify any other required variables.

```bash
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-balluff
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-balluff
```

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ cd edge-ai-libraries/microservices/dlstreamer-pipeline-server
Create a Docker file named `BaslerDockerfile` inside your `dlstreamer-pipeline-server` directory with the following content.

```dockerfile
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
FROM intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24

USER root

Expand Down Expand Up @@ -60,7 +60,7 @@ USER intelmicroserviceuser
Run the following command to build the image:

```bash
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler -f BaslerDockerfile .
docker build -t intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler -f BaslerDockerfile .
```

This command builds your Docker image using the steps defined above.
Expand All @@ -71,7 +71,7 @@ This command builds your Docker image using the steps defined above.

After the build completes, update .env and start the container:

> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
> update .env DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler

```bash
docker compose up -d
Expand Down Expand Up @@ -113,7 +113,7 @@ cp .env_worker-safety-gear-detection .env
Update the `.env` file with the newly created image as below and modify any other required variables.

```bash
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3-gencamsrc-basler
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-gencamsrc-basler
```

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.6.0-rc3
version: 2.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.6.0-rc3"
appVersion: "2.6.0"
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.0-rc3
version: 1.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.2.0-rc3"
appVersion: "1.2.0"
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.4.0-rc3
version: 1.4.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.4.0-rc3"
appVersion: "1.4.0"
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.2.0-rc3
version: 1.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.2.0-rc3"
appVersion: "1.2.0"
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.6.0-rc3
version: 2.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.6.0-rc3"
appVersion: "2.6.0"
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ webrtcturnserver:
password:
images:
minio: minio/minio:RELEASE.2020-12-12T08-39-07Z
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
nginx: nginx:1.27-alpine
mqtt_broker: eclipse-mosquitto:latest
config:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ webrtcturnserver:
password:
images:
minio: minio/minio:RELEASE.2020-12-12T08-39-07Z
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
nginx: nginx:1.27-alpine
mqtt_broker: eclipse-mosquitto:latest
config:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ webrtcturnserver:
password:
images:
minio: minio/minio:RELEASE.2020-12-12T08-39-07Z
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
nginx: nginx:1.27-alpine
mqtt_broker: eclipse-mosquitto:latest
config:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ webrtcturnserver:
password:
images:
minio: minio/minio:RELEASE.2020-12-12T08-39-07Z
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
nginx: nginx:1.27-alpine
mqtt_broker: eclipse-mosquitto:latest
config:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ webrtcturnserver:
password:
images:
minio: minio/minio:RELEASE.2020-12-12T08-39-07Z
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
dlstreamer_pipeline_server: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
nginx: nginx:1.27-alpine
mqtt_broker: eclipse-mosquitto:latest
config:
Expand Down
2 changes: 1 addition & 1 deletion metro-ai-suite/image-based-video-search/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# General
DOCKER_REGISTRY=
# DL Streamer Pipeline Server
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24-rc3
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
Loading
Loading