Hi, since using the following file didnt work (some resposity error), parameters on this example not set, but later they will be
Code
version: '3.8'
services:
ndi-recorder:
image: proteus-eretes/docker-ndi-recorder:latest
container_name: ndi-recorder
restart: unless-stopped
network_mode: "host"
environment:
- PUID=1000 # OMV User ID (Terminal: id $USER)
- PGID=100 # OMV Group ID
- TZ=Europe/Berlin
- STREAM_NAME=MY-NDI-SOURCE # Name der NDI Quelle
- OUTPUT_FOLDER=/storage
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/dbus:/var/run/dbus # Wichtig für mDNS/NDI-Erkennung
- /var/run/avahi-daemon/socket:/var/run/avahi-daemon/socket # Wichtig für Avahi
- /sharedfolders/Media/NDI-Captures:/storage # Speicherort der Videos
devices:
- /dev/dri:/dev/dri # Optional: Für Hardwarebeschleunigung (Intel QuickSync)
Display More
in downloaded
Quote
and loaded it with
Code
docker load --input /srv/dev-disk-by-uuid-93432eac-e6c2-455e-a3b5-01fd120d98b5/Record/sharedfolders/image/ndi-recorder.tar
it got found by docker and following file was able to start:
Code
version: '3.8'
services:
ndi-recorder:
image: ndi-recorder-ci:2025-02-21
container_name: ndi-recorder
restart: unless-stopped
network_mode: "host"
environment:
- PUID=1000 # OMV User ID (Terminal: id $USER)
- PGID=100 # OMV Group ID
- TZ=Europe/Berlin
- STREAM_NAME=WOHNWAGENPC (WohnwagenPC) # Name der NDI Quelle
- OUTPUT_FOLDER=/storage
volumes:
- /etc/localtime:/etc/localtime:ro
- /var/run/dbus:/var/run/dbus # Wichtig für mDNS/NDI-Erkennung
- /var/run/avahi-daemon/socket:/var/run/avahi-daemon/socket # Wichtig für Avahi
- /srv/dev-disk-by-uuid-93432eac-e6c2-455e-a3b5-01fd120d98b5/Record/sharedfolders/Media/NDI-Captures:/storage # Speicherort der Videos
devices:
- /dev/dri:/dev/dri # Optional: Für Hardwarebeschleunigung (Intel QuickSync)
Display More
so I get follwing logs:
Code
docker compose logs --follow ...
time="2026-02-03T11:41:05+01:00" level=warning msg="/home/compose/ndirecorder/ndirecorder.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion"
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
ndi-recorder | Starting ndi-record for stream WOHNWAGENPC (WohnwagenPC)
ndi-recorder | NDI Stream Record v6.1.1.0
ndi-recorder | Copyright (C) 2023-2024 Vizrt NDI AB. All rights reserved.
ndi-recorder |
ndi-recorder | Segmentation fault (core dumped)
ndi-recorder exited with code 139 (restarting)
Display More
so, what is my error?