Afternoon all.
I followed the OMV7 official guide to get Wireguard up and running on my server and have had no issues access my server, from outside my home network, using the Android Wireguard app.
I have recently, however, installed Adguard Home as a container:
Code
services:
adguardhome:
container_name: adguardhome
image: adguard/adguardhome:latest
hostname: adguardhome
restart: unless-stopped
ports:
- "192.168.1.19:53:53/udp"
- "192.168.1.19:53:53/tcp"
# - "192.168.1.19:3000:3000/tcp"
- 8083:80/tcp
volumes:
- /etc/localtime:/etc/localtime:ro
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11-5d6552e81a81/appdata/adguardhome/work:/opt/adguardhome/work
- /srv/dev-disk-by-uuid-85c4513d-cfd9-4134-ad11-5d6552e81a81/appdata/adguardhome/conf:/opt/adguardhome/conf
environment:
- PUID=1001
- PGID=100
Display More
Whenever, I run the Adguard container, my phone immediately loses access.
I was not expecting this and cannot quite work out what the issue is.
Any advice on allowing the connection through would be much appreciated.