Watchtower updated my CDVR server on a docker image on my Synology NAS. Since the update I can no longer reach the server from both inside/outside my network. The container is running in container manager but it is unreachable using its address (192.168.254.18:8090).
The YAML used to create the container is:
services:
channels-dvr:
container_name: channels-dvr
hostname: channels
image: fancybits/channels-dvr:latest
network_mode: host
restart: unless-stopped
environment:
- CHANNELS_PORT=8090
- TZ=America/New_York
ports:
- 8090:8090
volumes:
- /volume1/docker/channels-dvr:/channels-dvr
- /volume1/CDVR:/shares/DVR
I have tcp port 8090 forwarded to 8090 on my router.
Within my network, when typing 192.168.254.18:8090 in my browser it returns "Safari Cannot Connect to the Server".
The container appears to be running:
Any insight would be greatly appreciated.