Skip to content

Instantly share code, notes, and snippets.

@ramesh-lingappan
Created January 22, 2022 17:56
Show Gist options
  • Save ramesh-lingappan/9fef2b13e212f39e30812e527c74b6cd to your computer and use it in GitHub Desktop.
Save ramesh-lingappan/9fef2b13e212f39e30812e527c74b6cd to your computer and use it in GitHub Desktop.
AdGuard Docker Compose file
---
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