Go to file
Adam Hill 123a64311c Merge pull request #13 from diginc/pihole_script_fix_cron_and_readme
Pihole script fix cron and readme
2016-05-24 22:10:36 -05:00
AdminLTE@25bc98348f Updated version, support for custom DNS server override env vars 2016-04-25 23:18:41 -05:00
alpine update to version 2.6.3 2016-05-24 22:04:22 -05:00
debian update to version 2.6.3 2016-05-24 22:04:22 -05:00
pi-hole@c03268707a update to version 2.6.3 2016-05-24 22:04:22 -05:00
.gitignore alpine nginx pihole working, weighing in at 85.36 MB vs debian 252.4 MB 2016-02-13 13:24:44 -06:00
.gitmodules switch to pihole upstream submodule / not fork 2016-02-24 09:02:47 -06:00
.travis.yml first attempt at travis build 2016-03-29 22:04:36 -05:00
AdminLTE_version.txt Updated version, support for custom DNS server override env vars 2016-04-25 23:18:41 -05:00
Dockerfile alpine nginx pihole working, weighing in at 85.36 MB vs debian 252.4 MB 2016-02-13 13:24:44 -06:00
README.md WIP readme and cron changes 2016-05-11 10:41:06 -05:00
alpine.docker fix the php version, and start locally tagging with the same tags as hub to ease testing w/o unique testing tags 2016-05-12 16:44:20 -05:00
debian.docker WIP readme and cron changes 2016-05-11 10:41:06 -05:00
docker-compose.yml alpine nginx pihole working, weighing in at 85.36 MB vs debian 252.4 MB 2016-02-13 13:24:44 -06:00
docker-pi-hole.cron fixed crontab script 2016-05-24 21:55:36 -05:00
docker_dev.sh fix the php version, and start locally tagging with the same tags as hub to ease testing w/o unique testing tags 2016-05-12 16:44:20 -05:00
docker_run.sh updated example environment variables and documentation I missed 2016-04-26 07:46:27 -05:00
doco-alpine.yml WIP readme and cron changes 2016-05-11 10:41:06 -05:00
doco-debian.yml updated example environment variables and documentation I missed 2016-04-26 07:46:27 -05:00
doco-example.yml updated example environment variables and documentation I missed 2016-04-26 07:46:27 -05:00
jwilder-proxy-example-doco.yml updated example environment variables and documentation I missed 2016-04-26 07:46:27 -05:00
make_symlinks.sh alpine nginx pihole working, weighing in at 85.36 MB vs debian 252.4 MB 2016-02-13 13:24:44 -06:00
pi-hole_version.txt update to version 2.6.3 2016-05-24 22:04:22 -05:00
requirements.txt initial version of monolithic debian docker & WIP alpine. 2016-02-01 22:58:09 -06:00
update.sh fixed crontab script 2016-05-24 21:55:36 -05:00

README.md

A Docker project to make lightweight x86 continers with pi-hole functionality. Why? Maybe you don't have a Raspberry Pi lying around but you do have a Docker server.

Build Status

April 25, 2016 Update: the 'piholeIP' env var has been replaced by 'ServerIP' env var, update your docker run/docker-compose configs accordingly please.

Running Pi-Hole Docker

Dockerhub automatically builds the latest docker-pi-hole changes into images which can easily be pulled and ran with a simple docker run command.

One crucuial thing to know before starting is docker-pi-hole container needs port 53 and port 80, 2 very popular ports that may conflict with existing applications. If you have no other services or dockers using port 53/80 (if you do, keep reading below for a reverse proxy example), the minimum options required to run this container are in the script docker_run.sh or summarized here:

IP=$(ip addr show eth0 | grep "inet\b" | awk '{print $2}' | cut -d/ -f1)
docker run -p 53:53/tcp -p 53:53/udp -p 80:80 --cap-add=NET_ADMIN -e ServerIP="$IP" --name pihole -d diginc/pi-hole

Automatic Updates - docker-pi-hole.cron is a modified verion of upstream pi-hole's crontab entries using docker exec to run the same update scripts inside the docker container. Fill in your container's DOCKER_NAME into the variable in the cron file before copying it to /etc/cron.d/ to use it. It updates ad lists and cleans up your logs nightly.

Tips

  • To customize your upstream DNS servers you use docker environment varibales of DNS1 and DNS2 passed into docker at runtime. The default servers are Google's 8.8.8.8 and 8.8.4.4.
  • A good way to test things are working right is by loading this page: http://pi-hole.isworking.ok/admin/
  • Ubuntu users especially may need to shutoff dnsmasq on your docker server so it can run in the container on port 53
  • 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 exising webserver you run you'll probably need a reverse proxy websever config if you don't have one already. Pi-Hole has to be the default web app on said proxy e.g. if you goto your host by IP instead of domain pi-hole is served out instead of any other sites hosted by the proxy. This behavior is taken advantage of so any ad domain can be directed to your webserver and get blank html/images/videos instead of ads.
  • Here is an example of running with jwilder/proxy (an nginx auto-configuring docker reverse proxy for docker) on my port 80 with pihole 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 pihole's container. Please read jwilder/proxy readme for more info if you have trouble. I tested this basic exmaple which is based off what I run.
  • ServerIP environment variable is required to override/prevent pi-hole's script from returning a unreachable docker IP instead of your server's IP for ads.
  • dnsmasq requires NET_ADMIN capabilities to run correctly in docker.

Volume Mounts Here are some useful volume mount options to persist your history of stats in the admin interface, or add custom whitelists/blacklists. Create these files on the docker host first or you'll get errors:

  • docker run -v /var/log/pihole.log:/var/log/pihole.log ... (plus all of the minimum options added)
  • docker run -v /etc/pihole/blacklist.txt:/etc/pihole/blacklist.txt ... (plus all of the minimum options added)
  • docker run -v /etc/pihole/whitelist.txt:/etc/pihole/whitelist.txt ... (plus all of the minimum options added)
  • if you use this you should probably read the Advanced Usage section

All of these options get really long when strung together in one command, which is why I'm not showing all the full docker run commands variations here. This is where docker-compose yml files come in handy for representing really long docker commands in a readable file format.

Docker tags

Alpine

This is an optimized docker using alpine as its base. It uses nginx instead of lighttpd.

Debian

This version of the docker aims to be as close to a standard pi-hole installation by using the same base OS and the exact configs and scripts (minimally modified to get them working). This serves as a nice baseline for merging and testing upstream repository pi-hole changes.

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 incase you have remove the pi-hole container which is a typical docker upgrade pattern.

Volumes

Here are some relevant wiki pages from pi-hole's documentation and example volume mappings to optionally add to the basic example:

  • Customizing sources for ad lists
  • -v your-adlists.list:/etc/pihole/adlists.list Your version should probably start with the existing defaults for this file.
  • Whitlisting and Blacklisting
  • -v your-whitelist:/etc/pihole/whitelist.txt Your version should probably start with the existing defaults for this file.
  • -v your-blacklist:/etc/pihole/blacklist.txt This one is empty by default

Scripts

The original pi-hole scripts are in the container so they should work via docker exec <container> <command> like so:

  • docker exec pihole_container_name pihole updateGravity
  • docker exec pihole_container_name whitelist.sh some-good-domain.com
  • docker exec pihole_container_name blacklist.sh some-bad-domain.com

Customizations

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 should tell you about any errors in the docker log.

Similarly for the webserver you can customize configs in /etc/nginx (:alpine tag) and /etc/lighttpd (:debian tag).