Customize app

Where am I wrong? I'm trying to customise the pihole to integrate the unbound but I can't do it works. That's my code so far:
services:
pihole:
networks:
tipi_main_network:
ipv4_address: 172.18.0.17
depends_on:
- unbound
environment:
PIHOLE_DNS_: 172.18.0.18#5335
DNSSEC: true
unbound:
container_name: unbound
image: mvance/unbound:latest
networks:
tipi_main_network:
ipv4_address: 172.18.0.18
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
- "5335:53/tcp"
- "5335:53/udp"
healthcheck:
disable: true
labels:
runtipi.managed: true
services:
pihole:
networks:
tipi_main_network:
ipv4_address: 172.18.0.17
depends_on:
- unbound
environment:
PIHOLE_DNS_: 172.18.0.18#5335
DNSSEC: true
unbound:
container_name: unbound
image: mvance/unbound:latest
networks:
tipi_main_network:
ipv4_address: 172.18.0.18
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
- "5335:53/tcp"
- "5335:53/udp"
healthcheck:
disable: true
labels:
runtipi.managed: true
6 Replies
Nicolas
Nicolas9mo ago
What problem are you encountering? unbound is not launching?
Gabriel Murk
Gabriel MurkOP9mo ago
They are starting but pihole can't use unbound DNS
Nicolas
Nicolas9mo ago
Uhm I don't know pihole very well, does PIHOLEDNS require an ipv4? Because you could simple try with unbound docker will resolve it to unbound ip. And remove the ipv4_address definition
Gabriel Murk
Gabriel MurkOP9mo ago
It seems to be something related to the unbound.conf file configuration Edit: No need any change on ubound.conf I achieved get to this configuration The ipv4 need match to your docker runtipi network, Pihole will use it to communicate with unbount. No need open any port.
services:
pihole:
depends_on:
- unbound
environment:
PIHOLE_DNS_: 172.18.0.77
DNSSEC: true
unbound:
container_name: unbound
image: mvance/unbound:latest
networks:
tipi_main_network:
ipv4_address: 172.18.0.77
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/localtime:/etc/localtime:ro
healthcheck:
disable: true
labels:
runtipi.managed: true
services:
pihole:
depends_on:
- unbound
environment:
PIHOLE_DNS_: 172.18.0.77
DNSSEC: true
unbound:
container_name: unbound
image: mvance/unbound:latest
networks:
tipi_main_network:
ipv4_address: 172.18.0.77
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/localtime:/etc/localtime:ro
healthcheck:
disable: true
labels:
runtipi.managed: true
Now I'm trying to create a redirect in pihole.tipi.local to pihole.tipi.local/admin Any tips?
InfBoumcyCastle
InfBoumcyCastle9mo ago
Traefik RedirectRegex Documentation - Traefik
In Traefik Proxy's HTTP middleware, RedirectRegex redirecting clients to different locations. Read the technical documentation.
Gabriel Murk
Gabriel MurkOP8mo ago
Seems that not work in that way... In pihole there is a variable called VIRTUAL_HOST So I adjusted this on docker-compose and it worked well My final docker-compose:
services:
pihole:
depends_on:
- unbound
environment:
PIHOLE_DNS_: unbound#5335
DNSSEC: true
VIRTUAL_HOST: pihole.${LOCAL_DOMAIN}
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
unbound:
container_name: unbound
image: madnuttah/unbound:latest
networks:
- tipi_main_network
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
healthcheck:
test: ["CMD", "/usr/local/unbound/sbin/healthcheck.sh"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
services:
pihole:
depends_on:
- unbound
environment:
PIHOLE_DNS_: unbound#5335
DNSSEC: true
VIRTUAL_HOST: pihole.${LOCAL_DOMAIN}
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
unbound:
container_name: unbound
image: madnuttah/unbound:latest
networks:
- tipi_main_network
restart: unless-stopped
hostname: unbound
environment:
TZ: ${TZ}
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
healthcheck:
test: ["CMD", "/usr/local/unbound/sbin/healthcheck.sh"]
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s

Did you find this page helpful?