I'm also clueless.
Just for grins, I overrode the container DNS server to Cloudflare in case my ISP was doing DNS filtering.
Synology NAS
root@nas-1019:~# cat /etc/resolv.conf
nameserver 75.75.75.75
SLM Container
# cat /etc/resolv.conf
nameserver 75.75.75.75
FC Container
# cat /etc/resolv.conf
nameserver 75.75.75.75
FC Portainer stack compose
services:
fastchannels:
# GitHub home for this project: https://github.com/kineticman/FastChannels
# Docker container home for this project: https://github.com/kineticman/FastChannels/pkgs/container/fastchannels
image: ghcr.io/kineticman/fastchannels:latest
container_name: fastchannels
environment:
# Set the timezone to your local timezone
- TZ=America/Los_Angeles
network_mode: "bridge"
ports:
- "5523:5523"
restart: unless-stopped
volumes:
- db_data:/data
volumes:
db_data:
override DNS server to Cloudflare
services:
fastchannels:
# GitHub home for this project: https://github.com/kineticman/FastChannels
# Docker container home for this project: https://github.com/kineticman/FastChannels/pkgs/container/fastchannels
image: ghcr.io/kineticman/fastchannels:latest
container_name: fastchannels
environment:
# Set the timezone to your local timezone
- TZ=America/Los_Angeles
network_mode: "bridge"
dns:
- "1.1.1.1" # override host OS DNS servers with Cloudflare
ports:
- "5523:5523"
restart: unless-stopped
volumes:
- db_data:/data
volumes:
db_data:
FC Container
# cat /etc/resolv.conf
nameserver 1.1.1.1
Same error.
