pi-hole:setup_pi-hole_running_in_docker
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
pi-hole:setup_pi-hole_running_in_docker [2020/12/15 01:21] – created peter | pi-hole:setup_pi-hole_running_in_docker [2021/01/23 11:26] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
Docker compose: | Docker compose: | ||
+ | |||
+ | <code bash> | ||
+ | version: " | ||
+ | |||
+ | # More info at https:// | ||
+ | services: | ||
+ | pihole: | ||
+ | container_name: | ||
+ | image: pihole/ | ||
+ | ports: | ||
+ | - " | ||
+ | - " | ||
+ | - " | ||
+ | - " | ||
+ | - " | ||
+ | environment: | ||
+ | TZ: ' | ||
+ | # WEBPASSWORD: | ||
+ | # Volumes store your data between container upgrades | ||
+ | volumes: | ||
+ | - ' | ||
+ | - ' | ||
+ | # Recommended but not required (DHCP needs NET_ADMIN) | ||
+ | # | ||
+ | cap_add: | ||
+ | - NET_ADMIN | ||
+ | restart: unless-stopped | ||
+ | </ | ||
+ | |||
+ | ---- | ||
<code bash> | <code bash> | ||
Line 12: | Line 42: | ||
image: pihole/ | image: pihole/ | ||
ports: | ports: | ||
- | - 443:446 | + | - 443:443 |
- | - 80:8008 | + | - 80:80 |
- | - 10.1.1.60:53:53 | + | - 192.168.1.69:53:53 |
- | - 10.1.1.60:53:53/udp | + | - 192.168.1.69:53/udp |
- | - 10.1.1.60:67:67/udp | + | - 192.168.1.69:67/udp |
dns: | dns: | ||
- 127.0.0.1 | - 127.0.0.1 | ||
- 1.1.1.1 | - 1.1.1.1 | ||
- | - 8.8.8.8 | + | - 9.9.9.9 |
environment: | environment: | ||
- DNS1=1.1.1.1 | - DNS1=1.1.1.1 | ||
- | - DNS2=8.8.8.8 | + | - DNS2=9.9.9.9 |
- ServerIP=10.1.1.60 | - ServerIP=10.1.1.60 | ||
- | - TZ=America/New_York | + | - TZ=Europe/Jersey |
- WEBPASSWORD= | - WEBPASSWORD= | ||
logging: | logging: | ||
Line 31: | Line 61: | ||
options: | options: | ||
max-file: 10 | max-file: 10 | ||
- | max-size: | + | max-size: |
volumes: | volumes: | ||
- / | - / | ||
Line 42: | Line 72: | ||
restart: unless-stopped | restart: unless-stopped | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// |
pi-hole/setup_pi-hole_running_in_docker.1607995305.txt.gz · Last modified: 2020/12/15 01:21 by peter