Skip to content

Instantly share code, notes, and snippets.

@troyfontaine
Created November 29, 2019 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save troyfontaine/30954d4471c0f0029b247b2a858951df to your computer and use it in GitHub Desktop.
Save troyfontaine/30954d4471c0f0029b247b2a858951df to your computer and use it in GitHub Desktop.
Pihole Docker Container with IPv6 Support
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"
- "80:80/tcp"
- "443:443/tcp"
environment:
TZ: 'America/Chicago'
DNSSEC: "True"
DNS1: "127.0.0.1"
DNS2: "1.1.1.1"
ServerIPv6: #INSERT YOUR MACHINE'S ISP PROVIDED IPV6 ADDRESS HERE
# 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/'
volumes:
- './etc-pihole/:/etc/pihole/'
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
dns:
- 127.0.0.1
- 1.1.1.1
# 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
@nickmcgill
Copy link

Thank you!
I'd nearly given up with docker as I couldn't get pihole to work with ipv6.
Thanks to you, it now works :-D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment