Añadir adguard_compose.yaml

This commit is contained in:
2026-08-15 15:46:52 +02:00
parent 939b3b5499
commit f86de6eaad
+28
View File
@@ -0,0 +1,28 @@
networks:
pistack:
driver: bridge
npm-proxy:
external: true
services:
unbound:
image: mvance/unbound-rpi:latest
container_name: unbound
restart: unless-stopped
networks:
- pistack
ports:
- "127.0.0.1:5335:53/tcp"
- "127.0.0.1:5335:53/udp"
volumes:
- /opt/docker/unbound:/opt/unbound/etc/unbound
adguardhome:
image: adguard/adguardhome:latest
container_name: adguardhome
restart: unless-stopped
network_mode: host
volumes:
- /opt/docker/adguardhome/work:/opt/adguardhome/work
- /opt/docker/adguardhome/conf:/opt/adguardhome/conf
depends_on:
- unbound