-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Would you mind posting your docker run/compose? |
Beta Was this translation helpful? Give feedback.
-
Ha! Found out what I needed to do. Adguard home in a docker container may require the use of a macvlan interface (to assign a fixed IP). And host to container communication is not possible through this interface. For reference, here are the steps I followed to fix this :
On debian 12, these are the manual commands, assuming AdguardHome is running on 192.168.0.3 . : Using NetworkManager and making it persisting across reboots is a one-liner : |
Beta Was this translation helpful? Give feedback.
Ha! Found out what I needed to do. Adguard home in a docker container may require the use of a macvlan interface (to assign a fixed IP). And host to container communication is not possible through this interface.
Zoraxy did help me find this out because in its logs it wrote "no route to host" .
For reference, here are the steps I followed to fix this :
that's all folks !
On debian 12, these are the manual commands, assuming AdguardHome is running on 192.168.0.3 . :
ip link add dhs link enp2s0 type macvlan mode bridge
(dhs is how I named the new interface, enp2s0 is the physical interface …