Skip to content

Instantly share code, notes, and snippets.

@kraoc
Created November 11, 2022 18:49
Show Gist options
  • Save kraoc/fdb6996b74461fa3d5e9c5bd569fc05b to your computer and use it in GitHub Desktop.
Save kraoc/fdb6996b74461fa3d5e9c5bd569fc05b to your computer and use it in GitHub Desktop.
Docker Adguard Home Compose
version: "3.1"
services:
adguardhome:
container_name: adguardhome
hostname: adguardhome
restart: always
image: adguard/adguardhome:latest
stdin_open: true
tty: true
ports:
- 53:53/tcp
- 8880:80/tcp
# - 443:443/tcp
- 853:853/tcp
- 3003:3000/tcp
- 53:53/udp
# - 67:67/udp
# - 68:68/udp
# - 443:443/udp
- 784:784/udp
- 853:853/udp
- 5443:5443/udp
- 8853:8853/udp
expose:
- "53"
#- "80"
#- "443"
- "853"
- "784"
- "5443"
- "8553"
environment:
TZ: "Europe/Paris"
PUID: 1000
PGID: 1000
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /opt/docker/adguardhome/work:/opt/adguardhome/work
- /opt/docker/adguardhome/config:/opt/adguardhome/conf
- /opt/docker/ssl/:/ssl/:ro
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment