Created
January 22, 2022 17:56
-
-
Save ramesh-lingappan/9fef2b13e212f39e30812e527c74b6cd to your computer and use it in GitHub Desktop.
AdGuard Docker Compose file
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: "2" | |
services: | |
adguardhome: | |
image: adguard/adguardhome:latest | |
container_name: adguardhome | |
ports: | |
- 53:53/tcp | |
- 53:53/udp | |
- 67:67/udp | |
- 68:68/tcp | |
- 68:68/udp | |
- 853:853/tcp | |
- 82:80/tcp # this will be admin UI port | |
- 7000:7000/tcp # only for the first time | |
volumes: | |
- ./work:/opt/adguardhome/work | |
- ./conf:/opt/adguardhome/conf | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment