From e0b87d6cc3a60b96af498da494b602c1758b354a Mon Sep 17 00:00:00 2001 From: Kameron Kenny - pi501 Date: Tue, 19 Aug 2025 15:04:18 -0400 Subject: [PATCH] fix filepath --- Dockerfile | 2 +- docker-compose.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8a59071..64553b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,5 +4,5 @@ MAINTAINER Kameron Kenny COPY etc/pihole /etc/pihole COPY etc/dnsmasq.d /etc/dnsmasq.d -RUN for i in $(cat whitelist.list); do pihole -w $i ; done +RUN for i in $(cat /etc/pihole/whitelist.list); do pihole -w $i ; done RUN pihole -g diff --git a/docker-compose.yml b/docker-compose.yml index e5f1392..b95dcb9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: build: dockerfile: Dockerfile container_name: pihole1 - image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole1:250819.0.1 + image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole1:250819.0.2 restart: unless-stopped environment: TZ: 'America/Indianapolis' @@ -36,7 +36,7 @@ services: build: dockerfile: Dockerfile container_name: pihole2 - image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole2:250819.0.1 + image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole2:250819.0.2 restart: unless-stopped environment: TZ: 'America/Indianapolis' @@ -62,7 +62,7 @@ services: build: dockerfile: Dockerfile container_name: pihole3 - image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole3:250819.0.1 + image: docker-registry1.in.thelinuxpro.net:5000/tlp/pihole3:250819.0.2 restart: unless-stopped environment: TZ: 'America/Indianapolis'