Installs adguardhome into a linux container.
1.4K
Install adguardhome into a Linux container
Several tag are available:
AdGuard Home is a network-wide software for blocking ads and tracking. After you set it up, it'll cover ALL your home devices, and you don't need any client-side software for that.
It operates as a DNS server that re-routes tracking domains to a “black hole”, thus preventing your devices from connecting to those servers. It's based on software we use for our public AdGuard DNS servers, and both share a lot of code.
docker create --name=adguardhome \
-v <path to config>:/opt/AdGuardHome/conf \
-v <path to work>:/opt/AdGuardHome/work \
-e GID=<GID default:12345> \
-e AUTOUPGRADE=<0|1 default:0> \
-e TZ=<timezone default:Europe/Brussels> \
-p 53:53 \
-p 67:67 \
-p 68:68 \
-p 80:80 \
-p 443:443 \
-p 853:853 \
-p 3000:3000 \
-p 5443:5443 \
-p 6060:6060 \
digrouz/adguardhome
When you start the adguardhome image, you can adjust the configuration of the adguardhome instance by passing one or more environment variables on the docker run command line.
GIDThis variable is not mandatory and specifies the group id that will be set to own configuration files of the application. It has default value 12345.
AUTOUPGRADEThis variable is not mandatory and specifies if the container has to launch software update at startup or not. Valid values are 0 and 1. It has default value 0.
TZThis variable is not mandatory and specifies the timezone to be configured within the container. It has default value Europe/Brussels.
-e AUTOUPGRADE=1 at container creation.53 is used for DNS (both TCP/UDP)67 is used for DHCP server (UDP)68 is used for DHCP client (UDP)80 is used for HTTP (TCP)443 is used for HTTPS, DNS-over-HTTPS, DNSCrypt (both TCP/UDP)853 is used for DNS-over-TLS, DNS-over-QUIC (both TCP/UDP)3000 is used for HTTPS (both TCP/UDP)5443 is used for DNSCrypt (both TCP/UDP)6060 is used for HTTP (TCP)If you encounter an issue please open a ticket at github
Content type
Image
Digest
sha256:2bce43e7c…
Size
19.9 MB
Last updated
about 1 month ago
docker pull digrouz/adguardhome