2021-11-29, 08:47 PM
(2021-11-28, 02:55 PM)mvallevand Wrote: In bridge mode you also would need to set the environment variable HOST_IP to your actual host's IP
Martin
I'm afraid I didn't have any success with that, I did read that it was useful for older hdhomerun devices, but I'm using Sat-IP which I believe is a different protocol.
I experimented with this: (192.168.0.20 is the IP address of my Sat-IP server.)
Code:
nextpvr:
container_name: nextpvr
networks:
nginx:
environment:
- TZ={TZ}
- HOST_OS=${HOST_OS}
- HOST_IP=192.168.0.20
volumes:
- ${CONFIG}/nextpvr-final:/config
- ${RECORDINGS}:/recordings
- ${RECORDINGS}/buffer:/buffer
- ${CONFIG}/nextpvr-final/custom.ini:/app/data/tuning/DVB-S/custom.ini
ports:
- 16891:16891/udp
- 8866:8866
- 8026:8026/udp
image: nextpvr/nextpvr_amd64:stable
restart: unless-stopped
Code:
nextpvr:
container_name: nextpvr
networks:
nginx:
environment:
- TZ={TZ}
- HOST_OS=${HOST_OS}
- HOST_IP=192.168.0.1
volumes:
- ${CONFIG}/nextpvr-final:/config
- ${RECORDINGS}:/recordings
- ${RECORDINGS}/buffer:/buffer
- ${CONFIG}/nextpvr-final/custom.ini:/app/data/tuning/DVB-S/custom.ini
ports:
- 16891:16891/udp
- 8866:8866
- 8026:8026/udp
image: nextpvr/nextpvr_amd64:stable
restart: unless-stopped
Neither of the examples above allowed me to start a stream.
And apologies to the original poster as I never intended this to get derailed into a docker image conversation!