Initial upload of configurations

This commit is contained in:
Sil Klaasboer
2025-02-17 19:23:54 +01:00
parent 75ea10380d
commit ca2bcafe16
184 changed files with 4660 additions and 2 deletions

20
pihole/docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
pihole:
container_name: ${CONTAINER_NAME}
image: pihole/pihole:latest
ports:
- ${PORT_DNS}:53/tcp
- ${PORT_DNS}:53/udp
- ${PORT_WEBPORTAL}:80/tcp"
env_file:
- path: ./pihole.env
required: true
- path: ../global.env
required: true
environment:
TZ: ${TIMEZONE}
network_mode: "bridge"
volumes:
- ${HOME_DIR}/${CONTAINER_NAME}/etc-pihole:/etc/pihole
- ${HOME_DIR}/${CONTAINER_NAME}/etc-dnsmasq.d:/etc/dnsmasq.d
restart: unless-stopped

3
pihole/pihole.env Normal file
View File

@@ -0,0 +1,3 @@
CONTAINER_NAME=pihole
PORT_DNS=53
PORT_WEBPORTAL=8053