2021-05-23, 10:05 PM
I have had NextPVR running well in a docker container on my QNAP NAS for almost a year. I am wanting to launch a second container for some testing of stream recording. I figured it would be build a second container identical to the first, but with the port assignment 8866:8888 and access it that way. But not working. It spins up, builds the config file and npvr.db3 etc but I can't access it via <myip>:8888. Thoughts?
Actual config is:
version: '3'
services:
nextpvr:
image: nextpvr/nextpvr_amd64table
container_name: testing-nextpvr
network_mode: host
environment:
- PUID=0
- PGID=0
- VERSION=docker
volumes:
- /share/Cloud/NextPVR/recordings:/recordings
- /share/Cloud/NextPVR/buffer:/buffer
- /share/Cloud/NextPVR/config:/config
ports:
- 8866:8888
restart: unless-stopped
Actual config is:
version: '3'
services:
nextpvr:
image: nextpvr/nextpvr_amd64table
container_name: testing-nextpvr
network_mode: host
environment:
- PUID=0
- PGID=0
- VERSION=docker
volumes:
- /share/Cloud/NextPVR/recordings:/recordings
- /share/Cloud/NextPVR/buffer:/buffer
- /share/Cloud/NextPVR/config:/config
ports:
- 8866:8888
restart: unless-stopped