Created
December 3, 2020 18:38
-
-
Save mayjs/32646963029b88ba17c9fad836ecce0a to your computer and use it in GitHub Desktop.
Adguard docker compose
This file contains hidden or 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.5" | |
services: | |
adguard: | |
container_name: adguard | |
image: adguard/adguardhome:latest | |
volumes: | |
- "./adguard-work/:/opt/adguardhome/work" | |
- "./adguard-conf/:/opt/adguardhome/conf" | |
ports: | |
- "53:53/tcp" | |
- "53:53/udp" | |
- "67:67/udp" | |
# - "68:68/tcp" # Port 68 (DHCP) causes a conflict with docker/docker-compose | |
# - "68:68/udp" | |
- "8081:80/tcp" # Change this if you want the web interface on port 80 | |
- "4443:443/tcp" | |
- "853:853/tcp" | |
- "3000:3000/tcp" | |
expose: | |
- 80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment