Overview
- Full name
docker.io/authelia/authelia- Registry
- docker.io
- Namespace
- authelia
- Repository
- authelia
- Cached tags
- 250
- Last synced
- 07/05/2026, 05:25 AM
- Topics
Introduction
Authelia 开源 SSO 与 MFA 认证网关镜像,OAuth2/OpenID Connect 统一登录,反向代理前置身份校验与二次验证。
Details
authelia/authelia 运行 Authelia 身份认证与授权服务器,为 Nginx/Traefik 等反向代理提供 SSO、多因素认证与 OpenID Connect 集成。定位为应用前置认证网关,需挂载 configuration.yml 与持久化 session/用户数据库;常与 Authelia + 反向代理 + LDAP/OIDC 后端组成零信任入口。
快速启动
docker run -d --name authelia \
-p 9091:9091 \
-v /data/authelia:/config \
docker.io/authelia/authelia:latest
推荐实践
docker run -d --name authelia \
--restart unless-stopped \
-p 9091:9091 \
-v /data/authelia:/config \
-e AUTHELIA_JWT_SECRET=changeme \
docker.io/authelia/authelia:4.38.0
核心参数说明
-p 9091:9091— Authelia API 与 Web 门户-v .../authelia:...— 配置与用户数据目录-e AUTHELIA_JWT_SECRET— JWT 签名密钥(高敏)- 集成 — 反向代理 forward-auth 中间件
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: authelia
spec:
replicas: 1
selector:
matchLabels:
app: authelia
template:
metadata:
labels:
app: authelia
spec:
containers:
- name: authelia
image: docker.io/authelia/authelia:4.38.0
ports:
- containerPort: 9091
volumeMounts:
- name: config
mountPath: /config
envFrom:
- secretRef:
name: authelia-secrets
volumes:
- name: config
persistentVolumeClaim:
claimName: authelia-config
---
apiVersion: v1
kind: Service
metadata:
name: authelia
spec:
selector:
app: authelia
ports:
- port: 9091
targetPort: 9091
Ingress forward-auth 注解对接 Traefik/Nginx;Secret 存放 JWT 与 OIDC 凭证。
Latest tags (20)
View all 250 tags →| Tag | Arch | Pushed At | Size | Digest | Sync | Wish | Action |
|---|---|---|---|---|---|---|---|
docker.io/authelia/authelia :renovate-eslint-react-eslint-plugin-5.9.x | linux/amd64linux/arm/v7linux/arm64 | 2026/06/28 01:44 | 25.6 MB | sha256:0f72ae144fb7… | |||
docker.io/authelia/authelia :renovate-authelia-base-latest | linux/amd64linux/arm/v7linux/arm64 | 2026/06/28 01:43 | 25.6 MB | sha256:3362ec55480d… | |||
docker.io/authelia/authelia :master | linux/amd64linux/arm/v7linux/arm64 | 2026/06/27 23:38 | 25.6 MB | sha256:4821bcbca0a0… | |||
docker.io/authelia/authelia :renovate-prettier-3.8.x | linux/amd64linux/arm/v7linux/arm64 | 2026/06/27 23:31 | 25.6 MB | sha256:c2224f5b38b8… | |||
docker.io/authelia/authelia :autheliabot-esbuild-0.x | linux/amd64linux/arm/v7linux/arm64 | 2026/06/26 08:05 | 25.6 MB | sha256:038142ab0437… | |||
docker.io/authelia/authelia :latest | linux/amd64linux/arm/v7linux/arm64 | 2026/05/26 18:30 | 25.6 MB | sha256:b5f415d5f14b… | |||
docker.io/authelia/authelia :4 | linux/amd64linux/arm/v7linux/arm64 | 2026/05/26 18:30 | 25.6 MB | sha256:b5f415d5f14b… | |||
docker.io/authelia/authelia :4.39 | linux/amd64linux/arm/v7linux/arm64 | 2026/05/26 18:30 | 25.6 MB | sha256:b5f415d5f14b… | |||
docker.io/authelia/authelia :4.39.20 | linux/amd64linux/arm/v7linux/arm64 | 2026/05/26 18:29 | 25.6 MB | sha256:b5f415d5f14b… | |||
docker.io/authelia/authelia :4.39.19 | linux/amd64linux/arm/v7linux/arm64 | 2026/04/12 15:30 | 25.2 MB | sha256:809f92f5e8f1… | |||
docker.io/authelia/authelia :4.39.18 | linux/amd64linux/arm/v7linux/arm64 | 2026/04/10 09:38 | 25.2 MB | sha256:f90d00d07eed… | |||
docker.io/authelia/authelia :4.39.17 | linux/amd64linux/arm/v7linux/arm64 | 2026/04/09 20:13 | 25.2 MB | sha256:c846e73c905c… | |||
docker.io/authelia/authelia :4.39.16 | linux/amd64linux/arm/v7linux/arm64 | 2026/03/14 16:34 | 24.9 MB | sha256:ecadf87e6c14… | |||
docker.io/authelia/authelia :4.39.15 | linux/amd64linux/arm/v7linux/arm64 | 2025/11/29 20:23 | 24.5 MB | sha256:80c5e4729e83… | |||
docker.io/authelia/authelia :4.39.14 | linux/amd64linux/arm/v7linux/arm64 | 2025/11/09 16:38 | 24.5 MB | sha256:024c28873e8b… | |||
docker.io/authelia/authelia :4.39.13 | linux/amd64linux/arm/v7linux/arm64 | 2025/10/12 13:59 | 24.5 MB | sha256:87c32df41ad3… | |||
docker.io/authelia/authelia :4.39.12 | linux/amd64linux/arm/v7linux/arm64 | 2025/10/08 16:04 | 24.5 MB | sha256:4dfde64e2db7… | |||
docker.io/authelia/authelia :4.39.11 | linux/amd64linux/arm/v7linux/arm64 | 2025/10/02 09:07 | 24.5 MB | sha256:e4239aed33e2… | |||
docker.io/authelia/authelia :4.39.10 | linux/amd64linux/arm/v7linux/arm64 | 2025/09/15 17:18 | 24.5 MB | sha256:be774c3b2c5b… | |||
docker.io/authelia/authelia :4.39.9 | linux/amd64linux/arm/v7linux/arm64 | 2025/09/10 06:49 | 24.5 MB | sha256:e609a6ceac6f… |