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 @@ -235,7 +235,8 @@ services:
container_name: nginx_proxy
read_only: true
user: "${TIMESERIES_UID}:${TIMESERIES_UID}"
# entrypoint: ["sleep", "infinity"]
security_opt:
- no-new-privileges
command: >
/bin/sh -c "/usr/local/bin/nginx-cert-gen.sh && exec nginx -g 'daemon off;'"
environment:
Expand Down Expand Up @@ -270,7 +271,10 @@ services:
TIMESERIES_UID: ${TIMESERIES_UID}
container_name: ia-fusion-analytics
image: ${DOCKER_REGISTRY}${FUSION_MODULE_IMAGE}${IMAGE_SUFFIX:+-${IMAGE_SUFFIX}}
read_only: true
restart: unless-stopped
security_opt:
- no-new-privileges
environment:
# MQTT Configuration
MQTT_BROKER: ia-mqtt-broker
Expand Down Expand Up @@ -300,6 +304,7 @@ services:
image: ${DLSTREAMER_PIPELINE_SERVER_IMAGE}
container_name: dlstreamer-pipeline-server
hostname: dlstreamer-pipeline-server
read_only: true
networks:
- timeseries_network
restart: unless-stopped
Expand Down Expand Up @@ -381,6 +386,10 @@ services:
image: bluenviron/mediamtx:1.11.3
container_name: mediamtx
restart: unless-stopped
read_only: true
security_opt:
- no-new-privileges
user: "${TIMESERIES_UID}:${TIMESERIES_UID}"
ports:
- ${WHIP_SERVER_PORT}:8889 # WebRTC
- 9554:8554 # RTSP
Expand Down Expand Up @@ -409,6 +418,9 @@ services:
coturn:
image: coturn/coturn:4.7.0
container_name: coturn
read_only: true
security_opt:
- no-new-privileges
ports:
- "${COTURN_UDP_PORT}:3478"
- "${COTURN_UDP_PORT}:3478/udp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ services:
- timeseries_network
volumes:
- "vol_temp_time_series_analytics_microservice:/tmp/"
- ./apps/${SAMPLE_APP}/time-series-analytics-config/udfs/:/tmp/${SAMPLE_APP}/udfs/
- ./apps/${SAMPLE_APP}/time-series-analytics-config/tick_scripts/:/tmp/${SAMPLE_APP}/tick_scripts/
- ./apps/${SAMPLE_APP}/time-series-analytics-config/config.json:/app/config.json
- ./apps/${SAMPLE_APP}/time-series-analytics-config/models/:/tmp/${SAMPLE_APP}/models/
- /dev/dri:/dev/dri
- ./apps/${SAMPLE_APP}/time-series-analytics-config/udfs/:/tmp/${SAMPLE_APP}/udfs/:ro
- ./apps/${SAMPLE_APP}/time-series-analytics-config/tick_scripts/:/tmp/${SAMPLE_APP}/tick_scripts/:ro
- ./apps/${SAMPLE_APP}/time-series-analytics-config/config.json:/app/config.json:ro
- ./apps/${SAMPLE_APP}/time-series-analytics-config/models/:/tmp/${SAMPLE_APP}/models/:ro
- /dev/dri:/dev/dri:ro
- "/run/udev:/run/udev:ro"
group_add:
# render group ID for ubuntu 20.04 host OS
Expand Down