add podman services and documentation

This commit is contained in:
2024-01-18 10:09:06 -05:00
parent 48afc0bfa2
commit 7c82919ae3
5 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
version: "3"
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "10.1.203.197:53:53/tcp"
- "10.1.203.197:53:53/udp"
- "10.1.203.197:8080:80/tcp"
environment:
TZ: "America/Chicago"
WEBPASSWORD: "SET A PASSWORD HERE"
# Volumes store your data between container upgrades
volumes:
- pihole:/etc/pihole
- dnsmasq:/etc/dnsmasq.d
restart: unless-stopped
volumes:
pihole:
dnsmasq: