mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add pihole
This commit is contained in:
@@ -279,6 +279,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] odoo
|
- [x] odoo
|
||||||
- [x] owncloud
|
- [x] owncloud
|
||||||
- [x] phpmyadmin
|
- [x] phpmyadmin
|
||||||
|
- [x] pihole/pihole
|
||||||
- [x] portainer/portainer :+1:
|
- [x] portainer/portainer :+1:
|
||||||
- [x] postgres
|
- [x] postgres
|
||||||
- [x] registry
|
- [x] registry
|
||||||
|
|||||||
5
pihole-arm/README.md
Normal file
5
pihole-arm/README.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
pihole
|
||||||
|
======
|
||||||
|
|
||||||
|
- https://pi-hole.net/
|
||||||
|
- https://hub.docker.com/r/pihole/pihole/
|
||||||
19
pihole-arm/docker-compose.yml
Normal file
19
pihole-arm/docker-compose.yml
Normal file
@@ -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
|
||||||
Reference in New Issue
Block a user