Created
March 18, 2022 08:58
-
-
Save pmandreoli/5dca3fe4b42490203bde38b6d9ed9737 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | |
| environment: | |
| TZ: 'Europe/Rome' | |
| WEBPASSWORD: "pizzapazza" | |
| # Volumes store your data between container upgrades | |
| volumes: | |
| - '/home/pihole/etc-pihole/:/etc/pihole/' | |
| - '/home/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