-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy path.env
More file actions
88 lines (70 loc) · 2.37 KB
/
.env
File metadata and controls
88 lines (70 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#
# Apache v2 license
# Copyright (C) 2024-2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
# For Ubuntu 22.04: intel/dlstreamer:2026.0.0-ubuntu22
# For Ubuntu 24.04: intel/dlstreamer:2026.0.0-ubuntu24
BASE_IMAGE=intel/dlstreamer:2026.0.0-ubuntu22
# For Ubuntu 22.04 and build/run optimized image: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu22
# For Ubuntu 24.04 and build/run optimized image: intel/dlstreamer-pipeline-server:2026.0.0-ubuntu24
# For Ubuntu 22.04 and build/run extended image: intel/dlstreamer-pipeline-server:2026.0.0-extended-ubuntu22
# For Ubuntu 24.04 and build/run extended image: intel/dlstreamer-pipeline-server:2026.0.0-extended-ubuntu24
# For just running the microservice, use latest publicly available image as below
DLSTREAMER_PIPELINE_SERVER_IMAGE=intel/dlstreamer-pipeline-server:2026.0.0-ubuntu22
# For optimized image: dlstreamer-pipeline-server
# For extended image: dlstreamer-pipeline-server-extended
BUILD_TARGET=dlstreamer-pipeline-server
DLSTREAMER_PIPELINE_SERVER_DOCKERFILE=Dockerfile
####### Env variables for the DL Streamer Pipeline Server container
# Update RTSP_CAMERA_IP to the IP of the machine where the RTSP stream is coming from
RTSP_CAMERA_IP=
# User of DL Streamer Pipeline Server
PIPELINE_SERVER_USER=intelmicroserviceuser
UID=1999
# Model Registry Microservice
MR_URL=
MR_SAVED_MODELS_DIR=
MR_REQUEST_TIMEOUT=
MR_VERIFY_CERT=/run/secrets/ModelRegistry_Server/ca-bundle.crt
# proxy settings
http_proxy=
https_proxy=
no_proxy=localhost,eii-nightly-devops.iind.intel.com,127.0.0.1
# Log Level
LOG_LEVEL=INFO
# S3 related settings
S3_STORAGE_HOST=
S3_STORAGE_PORT=
S3_STORAGE_USER=
S3_STORAGE_PASS=
# OPCUA
OPCUA_SERVER_IP=
OPCUA_SERVER_PORT=
OPCUA_SERVER_USERNAME=
OPCUA_SERVER_PASSWORD=
# MQTT related configs
MQTT_HOST=mqtt-broker
MQTT_PORT=
# Open Telemetry related config
ENABLE_OPEN_TELEMETRY=false
OTEL_COLLECTOR_HOST=otel-collector
OTEL_COLLECTOR_PORT=4318
OTEL_EXPORT_INTERVAL_MILLIS=5000
PROMETHEUS_PORT=9999
GRAFANA_PORT=3000
GRAFANA_USERNAME=
GRAFANA_PASSWORD=
# Webrtc related config
WHIP_SERVER_IP=mediamtx-server
WHIP_SERVER_PORT=8889
WHIP_SERVER_TIMEOUT=10s
MTX_WEBRTCICESERVERS2_0_USERNAME=
MTX_WEBRTCICESERVERS2_0_PASSWORD=
# InfluxDB related config
INFLUXDB_HOST=
INFLUXDB_PORT=
INFLUXDB_USER=
INFLUXDB_PASS=
# render group ID from host needed to enable GPU/NPU devices in container; 1000 is default value
RENDER_GID=992