You can choose one of the following installation options:
- Run as standalone binary
- Run as docker container
Blocky supports single or multiple YAML files as configuration. Create new config.yml
with your configuration
(see Configuration for more details and all configuration options).
Simple configuration file, which enables only basic features:
upstream:
default:
- 46.182.19.48
- 80.241.218.68
- tcp-tls:fdns1.dismail.de:853
- https://dns.digitale-gesellschaft.ch/dns-query
blocking:
denylists:
ads:
- https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
clientGroupsBlock:
default:
- ads
ports:
dns: 53
http: 4000
Download the binary file from GitHub for your architecture and
run ./blocky --config config.yml
.
!!! warning
Please be aware, if you want to use port 53 or 953 on Linux you should add `CAP_NET_BIND_SERVICE` capability
to the binary with `setcap 'cap_net_bind_service=+ep' ./blocky`, or run as root (not recommended).
You can run blocky
from the simple user with systemd unit service.
Create user:
useradd blockyusr
Download blocky
to /opt/blocky
and chown
newly created user to blocky
folder:
chown -R blockyusr:blockyusr /opt/blocky/
Allow bind blocky
to privileged port:
setcap cap_net_bind_service=ep /opt/blocky/blocky
Create unit file:
nano /etc/systemd/system/blocky.service
With parameters:
[Unit]
Description=Blocky is a DNS proxy and ad-blocker
ConditionPathExists=/opt/blocky
After=local-fs.target
[Service]
user=blockyusr
group=blockyusr
Type=simple
WorkingDirectory=/opt/blocky
ExecStart=/opt/blocky/blocky --config /opt/blocky/config.yml
Restart=on-failure
RestartSec=10
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=ExecStart=/opt/blocky/blocky --config /opt/blocky/config.yml
[Install]
WantedBy=multi-user.target
Reload systemctl daemon:
systemctl daemon-reload
Enable and run service:
systemctl enable --now blocky
Checks the logs:
journalctl -xu blocky
Blocky docker images are deployed to DockerHub (spx01/blocky
) and GitHub Container Registry (ghcr.io/0xerr0r/blocky
).
You can define the location of the config file in the container with environment variable BLOCKY_CONFIG_FILE
.
Default value is /app/config.yml
.
Execute following command from the command line:
docker run --name blocky -v /path/to/config.yml:/app/config.yml -p 4000:4000 -p 53:53/udp spx01/blocky
Create following docker-compose.yml
file
version: "2.1"
services:
blocky:
image: spx01/blocky
container_name: blocky
restart: unless-stopped
# Optional the instance hostname for logging purpose
hostname: blocky-hostname
ports:
- "53:53/tcp"
- "53:53/udp"
- "4000:4000/tcp"
environment:
- TZ=Europe/Berlin # Optional to synchronize the log timestamp with host
volumes:
# Optional to synchronize the log timestamp with host
- /etc/localtime:/etc/localtime:ro
# config file
- ./config.yml:/app/config.yml
and start docker container with
docker-compose up -d
Following example shows, how to run blocky in a docker container and store query logs on a SAMBA share. Local black and allowlists directories are mounted as volume. You can create own black or allowlists in these directories and define the path like '/app/allowlists/allowlist.txt' in the config file.
!!! example
version: "2.1"
services:
blocky:
image: spx01/blocky
container_name: blocky
restart: unless-stopped
ports:
- "53:53/tcp"
- "53:53/udp"
- "4000:4000/tcp" # Prometheus stats (if enabled)
environment:
- TZ=Europe/Berlin
volumes:
# config file
- ./config.yml:/app/config.yml
# write query logs in this volume
- queryLogs:/logs
# put your custom allow/denylists in these directories
- ./denylists:/app/denylists/
- ./allowlists:/app/allowlists/
volumes:
queryLogs:
driver: local
driver_opts:
type: cifs
o: username=USER,password=PASSWORD,rw
device: //NAS_HOSTNAME/blocky
For complex setups, splitting the configuration between multiple YAML files might be desired. In this case, folder containing YAML files is passed on startup, Blocky will join all the files.
./blocky --config ./config/
!!! warning
Blocky simply joins the multiple YAML files. If an option (e.g. `upstream`) is present in multiple files, the configuration will not load and start will fail.
!!! warning
These projects are not associated with Blocky devs and are listed here for convenience.
See https://aur.archlinux.org/packages/blocky/
See https://pkgs.alpinelinux.org/package/edge/testing/x86/blocky
See https://github.com/m0zgen/blocky-installer
See https://www.freebsd.org/cgi/ports.cgi?query=blocky&stype=all
See the Gentoo Wiki to enable the GURU repository, then run emerge net-dns/blocky
.
As pkgs.blocky
and a module:
services.blocky = {
enable = true;
settings = {
# anything from config.yml
};
};
See https://formulae.brew.sh/formula/blocky
See https://truecharts.org/charts/enterprise/blocky/
(TrueCharts is not an official TrueNAS project)
!!! warning
These projects are not associated with Blocky devs and are listed here for convenience.
Blocky lists updater updates list related configuration without restarting blocky DNS.
Blocky Frontend provides a Web UI to control blocky. See linked project for installation instructions.
--8<-- "docs/includes/abbreviations.md"