-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adam Warner <[email protected]>
- Loading branch information
Showing
8 changed files
with
32 additions
and
217 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
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 | ||
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host" | ||
ports: | ||
- "53:53/tcp" | ||
- "53:53/udp" | ||
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server | ||
- "80:80/tcp" | ||
- "443:443/tcp" # By default, FTL will generate a self-signed certificate | ||
environment: | ||
TZ: 'America/Chicago' | ||
# FTLCONF_webserver_api_password: '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' # Only needed if you have some custom configs for dnsmasq | ||
# https://github.com/pi-hole/docker-pi-hole#note-on-capabilities | ||
cap_add: | ||
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed | ||
restart: unless-stopped |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.