Gabriel Murk
Gabriel Murk
RRuntipi
Created by Gabriel Murk on 7/26/2024 in #🙋🏼・help
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
12 replies