Expected Behaviour:
I expect Pi-hole's DHCP server to assign IP addresses in the range 192.168.1.50-192.168.1.150 to devices on my network. When a device requests an IP via DHCP.
I had it setup correctly previously but i recently did a full homelab reset and i cant seem to get it working again.
Operating System: Ubuntu 26.04
Hardware: HP EliteDesk
Docker Version: Docker version 29.1.3, build 29.1.3-0ubuntu4
Docker Compose File:
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "5353:53/tcp"
- "5353:53/udp"
- "81:80/tcp"
- "444:443/tcp"
- "67:67/udp"
environment:
TZ: 'Europe/London'
FTLCONF_dns_listeningMode: 'ALL'
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
cap_add:
- NET_ADMIN
- SYS_TIME
restart: unless-stopped