Having an issue resolving DNS in a docker container. Been looking through these forms plus github and nothing is working. Unsure if I missed something in the setup. I have tried multiple .ovpn and ensured I can connected to the same locations on another device using the PIA client.
using default bridge network in docker and tired many name_servers addresses which includes the default
Log and docker compose below. Any help would be appreciated
version: '3.9'
services:
delugevpn:
image: binhex/arch-delugevpn:latest
container_name: delugevpn
cap_add:
- NET_ADMIN
volumes:
- ${downloadFolder}:/data
- ${delugevpnConfig}:/config
- /etc/localtime:/etc/localtime:ro
environment:
- VPN_ENABLED=yes
- VPN_USER=<username>
- VPN_PASS=<password>
- VPN_PROV=pia
- VPN_CLIENT=openvpn
- STRICT_PORT_FORWARD=no
- ENABLE_PRIVOXY=no
- LAN_NETWORK=192.168.1.0/24
- NAME_SERVERS=84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1
- DELUGE_DAEMON_LOG_LEVEL=info
- DELUGE_WEB_LOG_LEVEL=info
- DELUGE_ENABLE_WEBUI_PASSWORD=no
- DEBUG=true
- UMASK=000
- PUID=0
- PGID=0
ports:
- '8112:8112'
- '8118:8118'
- '58846:58846'
- '58946:58946'