Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 567 Bytes

pihole.md

File metadata and controls

27 lines (22 loc) · 567 Bytes

Pi-hole - In addition to blocking advertisements, Pi-hole has an informative Web interface that shows stats on all the domains being queried on your network

Installation

version: '3'

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/Berlin
      - WEBPASSWORD=your-secret-password
    volumes:
      - etcd:/etc/pihole
      - dnsmasq:/etc/dnsmasq.d
    restart: unless-stopped