Authelia
| Description / name | Input element |
|---|---|
| Container Registry | |
| Container Configuration Root Path | |
| Timezone | |
| User ID | |
| Group ID | |
| Authelia Host Port | |
| Authelia /config Path | |
| Authelia /data Path |
Authelia on FreeBSD.
| Port | 9091 |
| Registry | ghcr.io/daemonless/authelia-server |
| Daemonless | daemonless/authelia-server |
| Source | authelia/authelia |
| Website | authelia.org |
Version Tags
| Tag | Description | Best For |
|---|---|---|
latest |
Upstream Binary. Built from official release. | Most users. Matches Linux Docker behavior. |
pkg |
FreeBSD Quarterly. Uses stable, tested packages. | Most users. Matches Linux Docker behavior. |
pkg-latest |
FreeBSD Latest. Rolling package updates. | Newest FreeBSD packages. |
Podman on FreeBSD currently requires root. All commands must be run as root (or via doas/sudo). |
Before deploying, ensure your host environment is ready. See the Quick Start Guide for host setup instructions.
Deployment
services:
authelia-server:
image: ghcr.io/daemonless/authelia-server:latest
container_name: authelia-server
environment:
- PUID=1000
- PGID=1000
- TZ=UTC
volumes:
- "/path/to/containers/authelia-server:/config"
- "/path/to/containers/authelia-server/data:/data"
ports:
- 9091:9091
restart: unless-stopped
- name: Deploy authelia-server
containers.podman.podman_container:
name: authelia-server
image: ghcr.io/daemonless/authelia-server:latest
state: started
restart_policy: always
env:
PUID: "1000"
PGID: "1000"
TZ: "UTC"
ports:
- "9091:9091"
volumes:
- "/path/to/containers/authelia-server:/config"
- "/path/to/containers/authelia-server/data:/data"
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 |
|---|---|
/config |
Configuration directory |
/data |
data directory |
Ports
| Port | Protocol | Description |
|---|---|---|
9091 |
TCP | Web UI |
This image is part of the Authelia Stack.
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).
Need help? Join our Discord community.