A docker container which runs the cloudflared proxy-dns at port 54 based on alpine with some parameters to enable DNS over HTTPS proxy for pi-hole based on tutorials from Oliver Hough and Scott Helme
Replace amd64
most normal PC's with arm64
or arm
for RaspberryPi, BananaPi etc.
Port 54 on host network so every device on the network can reach the Proxy
docker run -it --rm --name cloudflared --net host knight/cloudflared-dns:amd64
dig example.com @IP_OF_HOST -p 54
If you stop this container it will remove itself!
You can set up this Host to be a normal DNS resolver. You can put the Host IP into every client like with 1.1.1.1 or 8.8.8.8 or inside your router so you do not need to do it manually.
docker run -d --name cloudflared --restart=always -p 53:54/udp knight/cloudflared-dns:amd64
Install Docker curl install.docker.com | sudo bash
and Pi-hole
docker run -d --name cloudflared -p 127.0.0.1:54:54/udp --restart=always knight/cloudflared-dns:amd64
Enter IP 127.0.0.1#54 into Custom 1 (IPv4) within the Pi-Hole Admin Page
You can see the build, it's status and the push to Docker Hub on Travis-CI I run it every week so that there is no bug in it from the upstream apline image.
Issues, Pull Requests and Wiki additions are very welcome ๐
$ dig +short @10.0.0.2 -p 54 tobiassachs.de
13.225.238.129
13.225.238.53
13.225.238.9
13.225.238.61
Build against pinned upstream release
$ docker build -t knight/cloudflared-dns:latest .
Build against a specific upstream release
$ docker build -t knight/cloudflared-dns:latest . --build-arg UPSTREAM_RELEASE_TAG=2021.5.10
$ docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
$ docker buildx build -t knight/cloudflared-dns:latest --platform linux/amd64,linux/arm/v6,linux/arm/v7 --push .
I wrote some tests in a goss.yaml file which can be executed by dgoss to test the created image
$ dgoss run --name cloudflared --rm -ti knight/cloudflared-dns:latest
INFO: Starting docker container
INFO: Container ID: 792bc39d
INFO: Sleeping for 0.2
INFO: Container health
INFO: Running Tests
User: cloudflared: exists: matches expectation: true
Process: cloudflared: running: matches expectation: true
Command: uname -a: exit-status: matches expectation: 0
Command: cloudflared --version: exit-status: matches expectation: 0
Command: cloudflared --version: stdout: matches expectation: ["cloudflared version 2023.8.2 (built September 2023)"]
Package: ca-certificates: installed: matches expectation: true
DNS: visibilityspots.org: resolvable: matches expectation: true
Total Duration: 0.092s
Count: 7, Failed: 0, Skipped: 0
INFO: Deleting container
using act for local testing of the written github actions makes my life and commit history a lot easier;
$ act -l
Stage Job ID Job name Workflow name Workflow file Events
0 test test CI main.yaml push
1 buildx buildx CI main.yaml push
$ act -j test
[CI/test] ๐ Start image=catthehacker/ubuntu:act-latest
.
.
.
[CI/test] โ
Success - Main Execute Goss tests
[CI/test] ๐ Job succeeded
MIT Licensed (file LICENSE).