Skip to content

Instantly share code, notes, and snippets.

@smartass08
Created July 6, 2021 01:19
Show Gist options
  • Save smartass08/1069d2fe58a0073238f4c7655b4973d3 to your computer and use it in GitHub Desktop.
Save smartass08/1069d2fe58a0073238f4c7655b4973d3 to your computer and use it in GitHub Desktop.
Docker-compose for pihole
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
dns:
- 8.8.8.8
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "8080:80/tcp"
environment:
TZ: 'Asia/Kolkata'
WEBPASSWORD: 'ramramram'
# Volumes store your data between container upgrades
volumes:
- './etc-pihole/:/etc/pihole/'
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
# Recommended but not required (DHCP needs NET_ADMIN)
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities
cap_add:
- NET_ADMIN
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment