User Tools

Site Tools


pi-hole:setup_pi-hole_running_in_docker

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
pi-hole:setup_pi-hole_running_in_docker [2020/12/15 01:21] – created peterpi-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: "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"
 +      - "443:443/tcp"
 +    environment:
 +      TZ: 'Europe/Jersey'
 +      # WEBPASSWORD: '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/'
 +    # 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
 +</code>
 +
 +----
  
 <code bash> <code bash>
Line 12: Line 42:
     image: pihole/pihole     image: pihole/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: 200k+        max-size: 500k
     volumes:     volumes:
       - /etc/localtime:/etc/localtime:ro       - /etc/localtime:/etc/localtime:ro
Line 42: Line 72:
     restart: unless-stopped     restart: unless-stopped
 </code> </code>
 +
 +----
 +
 +===== References =====
 +
 +https://hub.docker.com/r/pihole/pihole
pi-hole/setup_pi-hole_running_in_docker.1607995305.txt.gz · Last modified: 2020/12/15 01:21 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki