1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00

add pihole

This commit is contained in:
kev 2018-08-25 11:33:37 +08:00
parent bbe4f5166a
commit 952136400f
3 changed files with 25 additions and 0 deletions

@ -279,6 +279,7 @@ A collection of delicious docker recipes.
- [x] odoo
- [x] owncloud
- [x] phpmyadmin
- [x] pihole/pihole
- [x] portainer/portainer :+1:
- [x] postgres
- [x] registry

5
pihole-arm/README.md Normal file

@ -0,0 +1,5 @@
pihole
======
- https://pi-hole.net/
- https://hub.docker.com/r/pihole/pihole/

@ -0,0 +1,19 @@
pihole:
image: pihole/pihole:v4.0_armhf
ports:
- 53:53/tcp
- 53:53/udp
- 67:67/udp
- 80:80/tcp
- 443:443/tcp
volumes:
- ./data/pihole:/etc/pihole
- ./data/dnsmasq.d:/etc/dnsmasq.d
environment:
- ServerIP=192.168.31.195
- WEBPASSWORD=random
- DNS1=8.8.8.8
- DNS2=8.8.4.4
cap_add:
- NET_ADMIN
restart: unless-stopped