From 4e56d89ea66494f5efafdea21d809a98d863411a Mon Sep 17 00:00:00 2001 From: David Hund Date: Fri, 21 Feb 2025 16:29:57 +0100 Subject: [PATCH] fix: `pihole/pihole@latest` Web Admin interface See: https://github.com/nextcloud/all-in-one/discussions/6064 `pihole/pihole@latest` has been updated to `v6`, breaking the Web Admin interface at (http://192.168.x.x:8573/admin) (Pi-hole itself continues working fine, it seems) **Cause:** V6 replaced `lighttpd` with an *embedded webserver* and changed most `pi-hole.json` *environment variables*. **Fix:** This PR updates the environment variables to match the new v6 configuration. Stopping and starting the container will apply the changes and should fix the Web Admin interface. Signed-off-by: David Hund --- community-containers/pi-hole/pi-hole.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/community-containers/pi-hole/pi-hole.json b/community-containers/pi-hole/pi-hole.json index 0f2f397b..2cecb9ec 100644 --- a/community-containers/pi-hole/pi-hole.json +++ b/community-containers/pi-hole/pi-hole.json @@ -28,9 +28,9 @@ ], "environment": [ "TZ=%TIMEZONE%", - "WEBPASSWORD=%PIHOLE_WEBPASSWORD%", - "DNSMASQ_LISTENING=all", - "WEB_PORT=8573" + "FTLCONF_webserver_api_password=%PIHOLE_WEBPASSWORD%", + "FTLCONF_dns_listeningMode=all", + "FTLCONF_webserver_port=8573" ], "volumes": [ {