Go to file
dfsx1 9bdfe868bd S6_VERSION: v2.1.0.2
https://github.com/just-containers/s6-overlay/releases/tag/v2.1.0.2

Signed-off-by: dfsx1 <dfsx1@users.noreply.github.com>
2020-12-07 21:58:04 +01:00
.github releases tags with ^v 2020-08-09 21:39:57 -05:00
s6 Update 20-start.sh 2020-08-22 18:17:17 -04:00
test Make the default debian version buster, preserve the 'stretch' tag for those who need it. 2020-09-28 17:12:03 -04:00
.dockerignore Update way too much 2020-01-30 20:26:57 -06:00
.gitignore use docker-compose example yaml 2020-08-17 20:09:39 +00:00
.gitmodules remove submodules 2017-01-17 23:16:11 -06:00
CHANGELOG.md Adding test and check for resolv.conf 2019-01-10 00:28:39 -06:00
CONTRIBUTING.md Create CONTRIBUTING.md 2017-10-16 15:25:40 -05:00
Dockerfile Simplify Dockerfile configuration. 2020-05-15 16:06:48 -04:00
Dockerfile.py Report docker build and tag exit code to halt the tests on failure to build 2020-07-16 16:49:12 -04:00
Dockerfile.sh Merge branch 'master' of github.com:pi-hole/docker-pi-hole into bugfix/resolve-dev-merge-conflicts 2020-07-16 16:26:21 -04:00
Dockerfile_build Lock Python version to 3.8 since it is being referenced in SED command 2020-11-12 15:51:20 -05:00
Pipfile docker-compose pip is garbage to install 2020-05-27 00:42:32 -05:00
Pipfile.lock docker-compose pip is garbage to install 2020-05-27 00:42:32 -05:00
README.md Merge pull request #690 from damajor/patch-1 2020-12-03 18:18:12 +00:00
TESTING.md Introduce additional docker tags for the debian version. 2020-06-29 09:34:19 -04:00
VERSION prep dev for 5.2.1 2020-12-02 21:34:25 +00:00
autotest fixing shellcheck errors from master 2016-10-22 13:39:12 -05:00
bash_functions.sh Introduce additional docker tags for the debian version. 2020-06-29 09:34:19 -04:00
build.yml S6_VERSION: v2.1.0.2 2020-12-07 21:58:04 +01:00
docker-compose-jwilder-proxy.yml remove resolv conf checks 2020-05-26 10:45:48 -05:00
docker-compose-traefik-proxy.md Merge branch 'no_resolv_check' of github.com:pi-hole/docker-pi-hole into no_resolv_check 2020-05-26 10:46:34 -05:00
docker-compose.yml.example use docker-compose example yaml 2020-08-17 20:09:39 +00:00
docker-pi-hole.cron debian images building, alpine WIP 2017-01-08 10:42:39 -06:00
docker_run.sh Remove second verb. 2020-11-12 13:51:17 -08:00
doco-example.yml A bunch of readme tweaks 2019-02-14 22:06:16 -06:00
gh-actions-deploy.sh reset the arch image array between debian versions 2020-07-17 22:10:10 -05:00
gh-actions-test.sh Make the default debian version buster, preserve the 'stretch' tag for those who need it. 2020-09-28 17:12:03 -04:00
gh-actions-vars.sh Make the default debian version buster, preserve the 'stretch' tag for those who need it. 2020-09-28 17:12:03 -04:00
install.sh Unsupported OS detected: Debian 9 2020-11-29 13:29:07 -06:00
pihole.service Added systemd service file and included instructions on it's use 2017-05-24 10:16:56 -04:00
requirements.txt Update way too much 2020-01-30 20:26:57 -06:00
setup.py tox + sped up parallel pytest 2017-10-05 14:24:30 -05:00
start.sh Merge pull request #690 from damajor/patch-1 2020-12-03 18:18:12 +00:00
tox.ini Introduce additional docker tags for the debian version. 2020-06-29 09:34:19 -04:00

README.md

Docker Pi-hole

Pi-hole

Quick Start

  1. Copy docker-compose.yml.example to docker-compose.yml and update as needed. See example below: Docker-compose example:
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: 'America/Chicago'
      # 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
  1. Run docker-compose up --detach to build and start pi-hole

Here is an equivalent docker run script.

Upgrade Notices:

Docker Pi-Hole v4.2.2

  • ServerIP no longer a required enviroment variable unless you run network 'host' mode! Feel free to remove it unless you need it to customize lighttpd
  • --cap-add NET_ADMIN no longer required unless using DHCP, leaving in examples for consistency

Docker Pi-Hole v4.1.1+

Starting with the v4.1.1 release your Pi-hole container may encounter issues starting the DNS service unless ran with the following setting:

  • --dns=127.0.0.1 --dns=1.1.1.1 The second server can be any DNS IP of your choosing, but the first dns must be 127.0.0.1
    • A WARNING stating "Misconfigured DNS in /etc/resolv.conf" may show in docker logs without this.
  • 4.1 required --cap-add NET_ADMIN until 4.2.1-1

These are the raw docker run cli versions of the commands. We provide no official support for docker GUIs but the community forums may be able to help if you do not see a place for these settings. Remember, always consult your manual too!

Overview

Renamed from diginc/pi-hole to pihole/pihole

A Docker project to make a lightweight x86 and ARM container with Pi-hole functionality.

  1. Install docker for your x86-64 system or ARMv7 system using those links. Docker-compose is also recommended.
  2. Use the above quick start example, customize if desired.
  3. Enjoy!

Build Status Docker Stars Docker Pulls

Running Pi-hole Docker

This container uses 2 popular ports, port 53 and port 80, so may conflict with existing applications ports. If you have no other services or docker containers using port 53/80 (if you do, keep reading below for a reverse proxy example), the minimum arguments required to run this container are in the script docker_run.sh

If you're using a Red Hat based distribution with an SELinux Enforcing policy add :z to line with volumes like so:

    -v "$(pwd)/etc-pihole/:/etc/pihole/:z" \
    -v "$(pwd)/etc-dnsmasq.d/:/etc/dnsmasq.d/:z" \

Volumes are recommended for persisting data across container re-creations for updating images. The IP lookup variables may not work for everyone, please review their values and hard code IP and IPv6 if necessary.

You can customize where to store persistent data by setting the PIHOLE_BASE environment variable when invoking docker_run.sh (e.g. PIHOLE_BASE=/opt/pihole-storage ./docker_run.sh). If PIHOLE_BASE is not set, files are stored in your current directory when you invoke the script.

Port 443 is to provide a sinkhole for ads that use SSL. If only port 80 is used, then blocked HTTPS queries will fail to connect to port 443 and may cause long loading times. Rejecting 443 on your firewall can also serve this same purpose. Ubuntu firewall example: sudo ufw reject https

Automatic Ad List Updates - since the 3.0+ release, cron is baked into the container and will grab the newest versions of your lists and flush your logs. Set your TZ environment variable to make sure the midnight log rotation syncs up with your timezone's midnight.

Running DHCP from Docker Pi-Hole

There are multiple different ways to run DHCP from within your Docker Pi-hole container but it is slightly more advanced and one size does not fit all. DHCP and Docker's multiple network modes are covered in detail on our docs site: Docker DHCP and Network Modes

Environment Variables

There are other environment variables if you want to customize various things inside the docker container:

Docker Environment Var. Description
ADMIN_EMAIL: <email address>
Optional Default: ''
Set an administrative contact address for the Block Page
TZ: <Timezone>
Recommended Default: UTC
Set your timezone to make sure logs rotate at local midnight instead of at UTC midnight.
WEBPASSWORD: <Admin password>
Recommended Default: random
http://pi.hole/admin password. Run docker logs pihole | grep random to find your random pass.
DNS1: <IP>
Optional Default: 8.8.8.8
Primary upstream DNS provider, default is google DNS
DNS2: <IP>
Optional Default: 8.8.4.4
Secondary upstream DNS provider, default is google DNS, no if only one DNS should used
DNSSEC: <"true"|"false">
Optional Default: "false"
Enable DNSSEC support
DNS_BOGUS_PRIV: <"true"|"false">
Optional Default: "true"
Enable forwarding of reverse lookups for private ranges
DNS_FQDN_REQUIRED: <"true"|"false">
Optional Default: true
Never forward non-FQDNs
REV_SERVER: <"true"|"false">
Optional Default: "false"
Enable DNS conditional forwarding for device name resolution
REV_SERVER_DOMAIN: <Network Domain>
Optional
If conditional forwarding is enabled, set the domain of the local network router
REV_SERVER_TARGET: <Router's IP>
Optional
If conditional forwarding is enabled, set the IP of the local network router
REV_SERVER_CIDR: <Reverse DNS>
Optional
If conditional forwarding is enabled, set the reverse DNS zone (e.g. 192.168.0.0/24)
ServerIP: <Host's IP>
Recommended
--net=host mode requires Set to your server's LAN IP, used by web block modes and lighttpd bind address
ServerIPv6: <Host's IPv6>
Required if using IPv6
If you have a v6 network set to your server's LAN IPv6 to block IPv6 ads fully
VIRTUAL_HOST: <Custom Hostname>
Optional Default: $ServerIP
What your web server 'virtual host' is, accessing admin through this Hostname/IP allows you to make changes to the whitelist / blacklists in addition to the default 'http://pi.hole/admin/' address
IPv6: <"true"|"false">
Optional Default: "true"
For unraid compatibility, strips out all the IPv6 configuration from DNS/Web services when false.
INTERFACE: <NIC>
Advanced/Optional
The default works fine with our basic example docker run commands. If you're trying to use DHCP with --net host mode then you may have to customize this or DNSMASQ_LISTENING.
DNSMASQ_LISTENING: <local|all|NIC>
Advanced/Optional
local listens on all local subnets, all permits listening on internet origin subnets in addition to local.
WEB_PORT: <PORT>
Advanced/Optional
This will break the 'webpage blocked' functionality of Pi-hole however it may help advanced setups like those running synology or --net=host docker argument. This guide explains how to restore webpage blocked functionality using a linux router DNAT rule: Alternative Synology installation method
DNSMASQ_USER: <pihole|root>
Experimental Default: root
Allows running FTLDNS as non-root.
TEMPERATUREUNIT: <c|k|f>
Optional Default: c
Set preferred temperature unit to c: Celsius, k: Kelvin, or f Fahrenheit units.
WEBUIBOXEDLAYOUT: <boxed|traditional>
Optional Default: boxed
Use boxed layout (helpful when working on large screens)
SKIPGRAVITYONBOOT: <Not Set|1>
Optional Default: Not Set
Use this option to skip updating the Gravity Database when booting up the container. By default this environment variable is not set so the Gravity Database will be updated when the container starts up. Setting this environment variable to 1 (or anything) will cause the Gravity Database to not be updated when container starts up.
QUERY_LOGGING: <"true"|"false">
Optional Default: "true"
Enable query logging or not.

Deprecated environment variables:

While these may still work, they are likely to be removed in a future version. Where applicible, alternative variable names are indicated. Please review the table above for usage of the alternative variables

Docker Environment Var. Description Replaced By
CONDITIONAL_FORWARDING: <"true"|"false">
Optional Default: "false"
Enable DNS conditional forwarding for device name resolution REV_SERVER
CONDITIONAL_FORWARDING_IP: <Router's IP>
Optional
If conditional forwarding is enabled, set the IP of the local network router REV_SERVER_TARGET
CONDITIONAL_FORWARDING_DOMAIN: <Network Domain>
Optional
If conditional forwarding is enabled, set the domain of the local network router REV_SERVER_DOMAIN
CONDITIONAL_FORWARDING_REVERSE: <Reverse DNS>
Optional
If conditional forwarding is enabled, set the reverse DNS of the local network router (e.g. 0.168.192.in-addr.arpa) REV_SERVER_CIDR

To use these env vars in docker run format style them like: -e DNS1=1.1.1.1

Here is a rundown of other arguments for your docker-compose / docker run.

Docker Arguments Description
-p <port>:<port> Recommended Ports to expose (53, 80, 67, 443), the bare minimum ports required for Pi-holes HTTP and DNS services
--restart=unless-stopped
Recommended
Automatically (re)start your Pi-hole on boot or in the event of a crash
-v $(pwd)/etc-pihole:/etc/pihole
Recommended
Volumes for your Pi-hole configs help persist changes across docker image updates
-v $(pwd)/etc-dnsmasq.d:/etc/dnsmasq.d
Recommended
Volumes for your dnsmasq configs help persist changes across docker image updates
--net=host
Optional
Alternative to -p <port>:<port> arguments (Cannot be used at same time as -p) if you don't run any other web application. DHCP runs best with --net=host, otherwise your router must support dhcp-relay settings.
--cap-add=NET_ADMIN
Recommended
Commonly added capability for DHCP, see Note on Capabilities below for other capabilities.
--dns=127.0.0.1
Recommended
Sets your container's resolve settings to localhost so it can resolve DHCP hostnames from Pi-hole's DNSMasq, also fixes common resolution errors on container restart.
--dns=1.1.1.1
Optional
Sets a backup server of your choosing in case DNSMasq has problems starting
--env-file .env
Optional
File to store environment variables for docker replacing -e key=value settings. Here for convenience

Tips and Tricks

  • A good way to test things are working right is by loading this page: http://pi.hole/admin/
  • How do I set or reset the Web interface Password?
    • docker exec -it pihole_container_name pihole -a -p - then enter your password into the prompt
  • Port conflicts? Stop your server's existing DNS / Web services.
    • Don't forget to stop your services from auto-starting again after you reboot
    • Ubuntu users see below for more detailed information
  • Port 80 is highly recommended because if you have another site/service using port 80 by default then the ads may not transform into blank ads correctly. To make sure docker-pi-hole plays nicely with an existing webserver you run you'll probably need a reverse proxy webserver config if you don't have one already. Pi-hole must be the default web app on the proxy e.g. if you go to your host by IP instead of domain then Pi-hole is served out instead of any other sites hosted by the proxy. This is the 'default_server' in nginx or 'default' virtual host in Apache and is taken advantage of so any undefined ad domain can be directed to your webserver and get a 'blocked' response instead of ads.
    • You can still map other ports to Pi-hole port 80 using docker's port forwarding like this -p 8080:80, but again the ads won't render properly. Changing the inner port 80 shouldn't be required unless you run docker host networking mode.
    • Here is an example of running with jwilder/proxy (an nginx auto-configuring docker reverse proxy for docker) on my port 80 with Pi-hole on another port. Pi-hole needs to be DEFAULT_HOST env in jwilder/proxy and you need to set the matching VIRTUAL_HOST for the Pi-hole's container. Please read jwilder/proxy readme for more info if you have trouble.

Installing on Ubuntu

Modern releases of Ubuntu (17.10+) include systemd-resolved which is configured by default to implement a caching DNS stub resolver. This will prevent pi-hole from listening on port 53. The stub resolver should be disabled with: sudo sed -r -i.orig 's/#?DNSStubListener=yes/DNSStubListener=no/g' /etc/systemd/resolved.conf

This will not change the nameserver settings, which point to the stub resolver thus preventing DNS resolution. Change the /etc/resolv.conf symlink to point to /run/systemd/resolve/resolv.conf, which is automatically updated to follow the system's netplan: sudo sh -c 'rm /etc/resolv.conf && ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf' After making these changes, you should restart systemd-resolved using systemctl restart systemd-resolved

Once pi-hole is installed, you'll want to configure your clients to use it (see here). If you used the symlink above, your docker host will either use whatever is served by DHCP, or whatever static setting you've configured. If you want to explicitly set your docker host's nameservers you can edit the netplan(s) found at /etc/netplan, then run sudo netplan apply. Example netplan:

network:
    ethernets:
        ens160:
            dhcp4: true
            dhcp4-overrides:
                use-dns: false
            nameservers:
                addresses: [127.0.0.1]
    version: 2

Note that it is also possible to disable systemd-resolved entirely. However, this can cause problems with name resolution in vpns (see bug report). It also disables the functionality of netplan since systemd-resolved is used as the default renderer (see man netplan). If you choose to disable the service, you will need to manually set the nameservers, for example by creating a new /etc/resolv.conf.

Users of older Ubuntu releases (circa 17.04) will need to disable dnsmasq.

Docker tags and versioning

The primary docker tags / versions are explained in the following table. Click here to see the full list of tags, I also try to tag with the specific version of Pi-hole Core for version archival purposes, the web version that comes with the core releases should be in the GitHub Release notes.

tag architecture description Dockerfile
latest auto detect x86, arm, or arm64 container, docker auto detects your architecture. Dockerfile
v5.0 auto detect Versioned tags, if you want to pin against a specific Pi-hole version, use one of these
v5.0-buster auto detect Versioned tags, if you want to pin against a specific Pi-hole and Debian version, use one of these
v5.0-<arch>-buster based on tag Specific architectures and Debian version tags
dev auto detect like latest tag, but for the development branch (pushed occasionally)

pihole/pihole:latest

This version of the docker aims to be as close to a standard Pi-hole installation by using the recommended base OS and the exact configs and scripts (minimally modified to get them working). This enables fast updating when an update comes from Pi-hole.

https://hub.docker.com/r/pihole/pihole/tags/

Upgrading, Persistence, and Customizations

The standard Pi-hole customization abilities apply to this docker, but with docker twists such as using docker volume mounts to map host stored file configurations over the container defaults. Volumes are also important to persist the configuration in case you have removed the Pi-hole container which is a typical docker upgrade pattern.

Upgrading / Reconfiguring

Do not attempt to upgrade (pihole -up) or reconfigure (pihole -r). New images will be released for upgrades, upgrading by replacing your old container with a fresh upgraded image is the 'docker way'. Long-living docker containers are not the docker way since they aim to be portable and reproducible, why not re-create them often! Just to prove you can.

  1. Read the release notes for both this Docker release and the Pi-hole release
    • This will help you avoid common problems due to any known issues with upgrading or newly required arguments or variables
    • We will try to put common break/fixes at the top of this readme too
  2. Download the latest version of the image: docker pull pihole/pihole
  3. Throw away your container: docker rm -f pihole
    • Warning When removing your pihole container you may be stuck without DNS until step 3; docker pull before docker rm -f to avoid DNS inturruption OR always have a fallback DNS server configured in DHCP to avoid this problem altogether.
    • If you care about your data (logs/customizations), make sure you have it volume-mapped or it will be deleted in this step.
  4. Start your container with the newer base image: docker run <args> pihole/pihole (<args> being your preferred run volumes and env vars)

Why is this style of upgrading good? A couple reasons: Everyone is starting from the same base image which has been tested to known it works. No worrying about upgrading from A to B, B to C, or A to C is required when rolling out updates, it reducing complexity, and simply allows a 'fresh start' every time while preserving customizations with volumes. Basically I'm encouraging phoenix server principles for your containers.

To reconfigure Pi-hole you'll either need to use an existing container environment variables or if there is no a variable for what you need, use the web UI or CLI commands.

Pi-hole features

Here are some relevant wiki pages from Pi-hole's documentation. The web interface or command line tools can be used to implement changes to pihole.

We install all pihole utilities so the the built in pihole commands will work via docker exec <container> <command> like so:

  • docker exec pihole_container_name pihole updateGravity
  • docker exec pihole_container_name pihole -w spclient.wg.spotify.com
  • docker exec pihole_container_name pihole -wild example.com

Customizations

The webserver and DNS service inside the container can be customized if necessary. Any configuration files you volume mount into /etc/dnsmasq.d/ will be loaded by dnsmasq when the container starts or restarts or if you need to modify the Pi-hole config it is located at /etc/dnsmasq.d/01-pihole.conf. The docker start scripts runs a config test prior to starting so it will tell you about any errors in the docker log.

Similarly for the webserver you can customize configs in /etc/lighttpd

Systemd init script

As long as your docker system service auto starts on boot and you run your container with --restart=unless-stopped your container should always start on boot and restart on crashes. If you prefer to have your docker container run as a systemd service instead, add the file pihole.service to "/etc/systemd/system"; customize whatever your container name is and remove --restart=unless-stopped from your docker run. Then after you have initially created the docker container using the docker run command above, you can control it with "systemctl start pihole" or "systemctl stop pihole" (instead of docker start/docker stop). You can also enable it to auto-start on boot with "systemctl enable pihole" (as opposed to --restart=unless-stopped and making sure docker service auto-starts on boot).

NOTE: After initial run you may need to manually stop the docker container with "docker stop pihole" before the systemctl can start controlling the container.

Note on Capabilities

DNSMasq / FTLDNS expects to have the following capabilities available:

  • CAP_NET_BIND_SERVICE: Allows FTLDNS binding to TCP/UDP sockets below 1024 (specifically DNS service on port 53)
  • CAP_NET_RAW: use raw and packet sockets (needed for handling DHCPv6 requests, and verifying that an IP is not in use before leasing it)
  • CAP_NET_ADMIN: modify routing tables and other network-related operations (in particular inserting an entry in the neighbor table to answer DHCP requests using unicast packets)

This image automatically grants those capabilities, if available, to the FTLDNS process, even when run as non-root.
By default, docker does not include the NET_ADMIN capability for non-privileged containers, and it is recommended to explicitly add it to the container using --cap-add=NET_ADMIN.
However, if DHCP and IPv6 Router Advertisements are not in use, it should be safe to skip it. For the most paranoid, it should even be possible to explicitly drop the NET_RAW capability to prevent FTLDNS from automatically gaining it.

User Feedback

Please report issues on the GitHub project when you suspect something docker related. Pi-hole or general docker questions are best answered on our user forums. Ping me (@diginc) on the forums if it's a docker container and you're not sure if it's docker related.