Replies: 5 comments
-
Just a guess, but you are probably running it with the Therefore, I run it with the version: "3.2"
volumes:
work:
services:
main:
# For configs, see https://hub.docker.com/r/adguard/adguardhome
image: adguard/adguardhome
container_name: adguard
network_mode: host # Required for DHCP server
volumes:
- work:/opt/adguardhome/work
- ./conf:/opt/adguardhome/conf
restart: unless-stopped This will show up as: $netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp6 0 0 :::80 :::* LISTEN 11192/AdGuardHome
tcp6 0 0 :::53 :::* LISTEN 11192/AdGuardHome
...
udp 0 0 0.0.0.0:67 0.0.0.0:* 11192/AdGuardHome
udp 0 0 0.0.0.0:68 0.0.0.0:* 594/dhcpcd
...
udp6 0 0 :::53 :::* 11192/AdGuardHome Now, AGH runs less isolated, but no longer behind the docker proxy. It would say Note that I've never run your setup ( |
Beta Was this translation helpful? Give feedback.
-
This gets a little over my head I hate to admit, I am willing to use the DHCP server but no idea how to configure it I read the docs but still makes 0 sense to me, I found where my DHCP is set up in my fios router. Back to the issue at hand, I did as you suggested and added network_mode: host to my docker-compose file this, unfortunately, made the admin panel not load on any of the crazy (docker internal I assume) ip's it said I could access it on, including 127.0.0.1. Not sure what the issue is there |
Beta Was this translation helpful? Give feedback.
-
It should come up at your machine's address (IP/hostname) under port 80, so just browsing to |
Beta Was this translation helpful? Give feedback.
-
I did not try on port 80, the console outputs a bunch of ways to access it and they all had :3000 attached. I could try port 80 but I am also running a webserver on that box on port 80 so not sure how that would work. |
Beta Was this translation helpful? Give feedback.
-
You wouldn't have been able to open AGH on 80 if it was already in use, so we can assert that that's not it. You can't have your webserver and also AGH on 80, you will need a reverse proxy for that. So try |
Beta Was this translation helpful? Give feedback.
-
Hello
I installed adguard home on docker on my network, it's working as I can see by what it's blocking. The only issue I see is there is only 1 client being identified and that's the machine running docker, adguard is acting as if every query is coming from that machine.
What did I do wrong and how do I fix this? I even went into settings a manually added a few clients but still only shows the docker-machine as the client making all requests rather than the actual devices that are..
Beta Was this translation helpful? Give feedback.
All reactions