Replies: 1 comment 3 replies
-
@MilesTEG1, hello! The To run AdGuard Home in a container with this new flag run: docker run --name adguardhome \
-v /my/own/workdir:/opt/adguardhome/work \
-v /my/own/confdir:/opt/adguardhome/conf \
-p 53:53/tcp -p 53:53/udp \
-p 80:80/tcp -p 3000:3000/tcp \
-p 67:67/udp -p 68:68/tcp -p 68:68/udp \
-p 443:443/tcp \
-p 853:853/tcp \
-d adguard/adguardhome \
--no-etc-hosts You may notice, that this command is taken directly from our wiki with a little addition of In case of using Dockerfile, to use this flag, you should just append it to CMD [ \
"--no-check-update", \
"--no-etc-hosts", \
"-c", "/opt/adguardhome/conf/AdGuardHome.yaml", \
"-h", "0.0.0.0", \
"-w", "/opt/adguardhome/work"
] |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
With the new build v0.106.0 there is a "new flag
--no-etc-hosts
to disable client domain name lookups in the operating system's /etc/hosts files (#1947)."But when I read the #1947 issue, I don't understand what does this flag...
is it with the host filter file I set in "blocking filter list" ?
And, when I'll correctly understand the purpose of this new flag, how to use it with a docker installation (with docker-compose file) ?
Thanks for your help 😃
Beta Was this translation helpful? Give feedback.
All reactions