Skip to content

Instantly share code, notes, and snippets.

@DennisLoska
Created November 2, 2020 20:57
Show Gist options
  • Save DennisLoska/297f612b37a699ce5b87560e5b0cc8e2 to your computer and use it in GitHub Desktop.
Save DennisLoska/297f612b37a699ce5b87560e5b0cc8e2 to your computer and use it in GitHub Desktop.
Pihole configuration for Raspberry Pi 4
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:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp"
- "82:80/tcp"
- "83:443/tcp"
environment:
TZ: 'Europe/Berlin'
# WEBPASSWORD: 'set a secure password here or it will be random'
# Volumes store your data between container upgrades
volumes:
- './etc-pihole/:/etc/pihole/'
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
dns:
- 208.67.222.222
- 208.67.220.220
# 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