AdGuard Home
| Description / name | Input element |
|---|---|
| Container Registry | |
| Container Configuration Root Path | |
| Timezone | |
| User ID | |
| Group ID | |
| AdGuard Home Host Port | |
| AdGuard Home /opt/adguardhome/conf Path | |
| AdGuard Home /opt/adguardhome/work Path |
Network-wide ads & trackers blocking DNS server on FreeBSD.
Version Tags
| Tag | Description | Best For |
|---|---|---|
latest |
FreeBSD Port. Installs from latest packages. | Most users. Matches Linux Docker behavior. |
pkg |
FreeBSD Port. Installs from Quarterly ports. | Stability. Uses system libraries. |
pkg-latest |
FreeBSD Port. Installs from Latest ports. | Bleeding edge system packages. |
Prerequisites
Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.
Deployment
services:
adguardhome:
image: ghcr.io/daemonless/adguardhome:latest
container_name: adguardhome
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- /path/to/containers/adguardhome/conf:/opt/adguardhome/conf
- /path/to/containers/adguardhome/work:/opt/adguardhome/work
ports:
- 53:53
- 53:53
- 67:67
- 68:68
- 80:80
- 443:443
- 443:443
- 784:784
- 853:853
- 853:853
- 3000:3000
- 5443:5443
- 5443:5443
- 6060:6060
- 8853:8853
restart: unless-stopped
podman run -d --name adguardhome \
-p 53:53 \
-p 53:53 \
-p 67:67 \
-p 68:68 \
-p 80:80 \
-p 443:443 \
-p 443:443 \
-p 784:784 \
-p 853:853 \
-p 853:853 \
-p 3000:3000 \
-p 5443:5443 \
-p 5443:5443 \
-p 6060:6060 \
-p 8853:8853 \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=UTC \
-v /path/to/containers/adguardhome/conf:/opt/adguardhome/conf \
-v /path/to/containers/adguardhome/work:/opt/adguardhome/work \
ghcr.io/daemonless/adguardhome:latest
- name: Deploy adguardhome
containers.podman.podman_container:
name: adguardhome
image: ghcr.io/daemonless/adguardhome:latest
state: started
restart_policy: always
env:
PUID: "1000"
PGID: "1000"
TZ: "UTC"
ports:
- "53:53"
- "53:53"
- "67:67"
- "68:68"
- "80:80"
- "443:443"
- "443:443"
- "784:784"
- "853:853"
- "853:853"
- "3000:3000"
- "5443:5443"
- "5443:5443"
- "6060:6060"
- "8853:8853"
volumes:
- "/path/to/containers/adguardhome/conf:/opt/adguardhome/conf"
- "/path/to/containers/adguardhome/work:/opt/adguardhome/work"
Access the Web UI at: http://localhost:53
Interactive Configuration
Parameters
Environment Variables
| Variable | Default | Description |
|---|---|---|
PUID |
1000 |
User ID for the application process |
PGID |
1000 |
Group ID for the application process |
TZ |
UTC |
Timezone for the container |
Volumes
| Path | Description |
|---|---|
/opt/adguardhome/conf |
Configuration files |
/opt/adguardhome/work |
Work directory (database, logs, data) |
Ports
| Port | Protocol | Description |
|---|---|---|
53 |
TCP | DNS (TCP/UDP) |
53 |
TCP | DNS (TCP/UDP) |
67 |
TCP | |
68 |
TCP | |
80 |
TCP | HTTP |
443 |
TCP | HTTPS / DNS-over-HTTPS (TCP/UDP) |
443 |
TCP | HTTPS / DNS-over-HTTPS (TCP/UDP) |
784 |
TCP | |
853 |
TCP | DNS-over-TLS (TCP/UDP) |
853 |
TCP | DNS-over-TLS (TCP/UDP) |
3000 |
TCP | Web UI (Setup/Admin) |
5443 |
TCP | DNS-over-HTTPS (TCP/UDP) |
5443 |
TCP | DNS-over-HTTPS (TCP/UDP) |
6060 |
TCP | Admin API |
8853 |
TCP |
Implementation Details
- Architectures: amd64
- User:
bsd(UID/GID set via PUID/PGID). Defaults to1000:1000. - Base: Built on
ghcr.io/daemonless/base(FreeBSD 15.0).
Website Source Code FreshPorts
Need help? Join our Discord community.