2026-06-01 15:05:48 +10:00
|
|
|
services:
|
|
|
|
|
adguardhome:
|
|
|
|
|
image: adguard/adguardhome:latest
|
|
|
|
|
container_name: adguardhome
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
ports:
|
|
|
|
|
- "53:53/tcp"
|
|
|
|
|
- "53:53/udp"
|
|
|
|
|
- "481:80/tcp" # Web interface (after initial setup)
|
|
|
|
|
- "3000:3000/tcp"
|
|
|
|
|
- "8832:443"
|
|
|
|
|
volumes:
|
|
|
|
|
- ./work:/opt/adguardhome/work
|
|
|
|
|
- ./conf:/opt/adguardhome/conf
|
|
|
|
|
environment:
|
|
|
|
|
- TZ=Australia/Melbourne
|
|
|
|
|
networks:
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
|
|
# unbound:
|
|
|
|
|
# container_name: unbound
|
|
|
|
|
# image: mvance/unbound:latest
|
|
|
|
|
# restart: unless-stopped
|
|
|
|
|
# volumes:
|
|
|
|
|
# - ./unbound:/opt/unbound/etc/unbound
|
|
|
|
|
# networks:
|
|
|
|
|
# default:
|
|
|
|
|
# ipv4_address: 172.20.0.250
|
|
|
|
|
# ports:
|
|
|
|
|
# - 5353:5353
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
|
default:
|
|
|
|
|
name: adguard_world
|
|
|
|
|
ipam:
|
|
|
|
|
config:
|
|
|
|
|
- subnet: 172.20.0.0/16
|