You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
798 B
42 lines
798 B
version: "3"
|
|
|
|
volumes:
|
|
work:
|
|
conf:
|
|
|
|
services:
|
|
adguardhome:
|
|
depends_on:
|
|
- unbound
|
|
image: adguard/adguardhome
|
|
container_name: adguardhome
|
|
ports:
|
|
- 53:53/tcp # DNS
|
|
- 53:53/udp
|
|
- 784:784/udp # DNS over QUIC
|
|
- 853:853/tcp # DNS over TLS
|
|
- 3000:3000/tcp # initial installation
|
|
- 8080:80/tcp # Dashboard
|
|
- 4443:443/tcp # DNS over HTTPs
|
|
volumes:
|
|
- work:/opt/adguardhome/work
|
|
- conf:/opt/adguardhome/conf
|
|
restart: unless-stopped
|
|
|
|
unbound:
|
|
container_name: unbound
|
|
restart: unless-stopped
|
|
image: klutchell/unbound
|
|
networks:
|
|
default:
|
|
ipv4_address: 172.20.0.53 # fixed IP address
|
|
|
|
networks:
|
|
default:
|
|
ipam:
|
|
config:
|
|
- subnet: 172.20.0.1/24
|
|
|
|
|
|
|