Created
March 27, 2022 12:27
-
-
Save attilaolah/3af127bf43620055daccae65a76be8b4 to your computer and use it in GitHub Desktop.
AdGuard Home / Docker Compose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
adguard_home: | |
# AdGuard Home server. | |
image: adguard/adguardhome | |
ports: | |
# DNS: | |
- 53:53/tcp | |
- 53:53/udp | |
# DHCP: | |
- 67:67/udp | |
- 68:68/tcp | |
- 68:68/udp | |
# DNS-over-HTTPS / admin panel: | |
- 80:80/tcp | |
- 443:443/tcp | |
- 443:443/udp | |
- 3000:3000/tcp | |
# DNS-over-TLS: | |
- 853:853/tcp | |
# DNS-over-QUIC: | |
- 784:784/udp | |
- 853:853/udp | |
- 8853:8853/udp | |
# DNSCrypt: | |
- 5443:5443/tcp | |
- 5443:5443/udp | |
volumes: | |
- /opt/adguardhome/conf:/opt/adguardhome/conf | |
- /opt/adguardhome/work:/opt/adguardhome/work | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment