logo
docker.io/authelia/authelia:4.39.23
linux/amd64 docker.io

这是一个Authelia身份验证服务器的Docker镜像。Authelia是一个开源的身份验证平台,它提供多因素身份验证、单点登录和会话管理等功能,旨在增强Web应用程序的安全性。

15
浏览次数
79.38MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23
源镜像
docker.io/authelia/authelia:4.39.23
镜像ID
sha256:e29a15772094115eb3dc0b36955ae125f23053c1815b79162970adcfa9eb2ac7
镜像 TAG
4.39.23
镜像大小
79.38MB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/app/entrypoint.sh
工作目录
/app
OS/平台
linux/amd64
镜像创建
2026-09-08T11:22:13.745524953Z
同步时间
2026-09-09 12:32
浏览量
15 次
贡献者
🔌 开放端口 1
9091/tcp
⚙️ 环境变量 4
KeyValue
PATH=/app:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
PUID=0 1
PGID=0 2
X_AUTHELIA_CONFIG=/config/configuration.yml 3
🏷️ 镜像标签 13
KeyValue
Authelia Team <team@authelia.com> org.opencontainers.image.authors
docker.io/authelia/base:4.39.23@sha256:1cc26fd0d72b9e794593bebaa521d41afdee7df0a747a966d58c654ac401abb8 org.opencontainers.image.base.name
2026-09-08T21:22:06+10:00 org.opencontainers.image.created
Authelia is an open-source authentication and authorization server and portal fulfilling the identity and access management (IAM) role of information security in providing multi-factor authentication and single sign-on (SSO) for your applications via a web portal. Authelia is an OpenID Connect 1.0 Provider which is OpenID Certified™ allowing comprehensive integrations and acts as a companion for common reverse proxies. org.opencontainers.image.description
https://www.authelia.com org.opencontainers.image.documentation
Apache-2.0 org.opencontainers.image.licenses
4.39.23 org.opencontainers.image.ref.name
f1f520f607452d5531ef6c5a818e2534676a4809 org.opencontainers.image.revision
https://github.com/authelia/authelia/tree/f1f520f607452d5531ef6c5a818e2534676a4809 org.opencontainers.image.source
authelia org.opencontainers.image.title
https://github.com/authelia/authelia/pkgs/container/authelia org.opencontainers.image.url
Authelia org.opencontainers.image.vendor
4.39.23 org.opencontainers.image.version
🛡️ 镜像安全扫描
ubuntu 24.04 Trivy 2026-09-09 12:32 查看完整报告
0
低危 LOW
0
中危 MEDIUM
0
高危 HIGH
0
严重 CRITICAL
受影响目标 (2)
docker.io/authelia/authelia:4.39.23 (ubuntu 24.04) ubuntu app/authelia gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23  docker.io/authelia/authelia:4.39.23

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23  docker.io/authelia/authelia:4.39.23

Shell快速替换命令

sed -i 's#authelia/authelia:4.39.23#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23  docker.io/authelia/authelia:4.39.23'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23  docker.io/authelia/authelia:4.39.23'

镜像构建历史


# 2026-09-08 19:22:13  0.00B 指定检查容器健康状态的命令
HEALTHCHECK {Test:[CMD-SHELL /app/healthcheck.sh] Interval:30s Timeout:3s StartPeriod:1m0s StartInterval:0s Retries:0}
                        
# 2026-09-08 19:22:13  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/app/entrypoint.sh"]
                        
# 2026-09-08 19:22:13  0.00B 声明容器运行时监听的端口
EXPOSE [9091/tcp]
                        
# 2026-09-08 19:22:13  154.00B 复制新文件或目录到容器中
COPY --chmod=666 .healthcheck.env ./ # buildkit
                        
# 2026-09-08 19:22:13  63.30MB 复制新文件或目录到容器中
COPY authelia-linux-amd64/authelia LICENSE entrypoint.sh healthcheck.sh ./ # buildkit
                        
# 2026-09-07 13:06:29  0.00B 设置环境变量 PATH PUID PGID X_AUTHELIA_CONFIG
ENV PATH=/app:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PUID=0 PGID=0 X_AUTHELIA_CONFIG=/config/configuration.yml
                        
# 2026-09-07 13:06:29  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-09-07 13:06:29  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2026-09-07 13:06:29  0.00B 定义构建参数
ARG TARGETOS=linux
                        
# 2026-09-07 12:51:27  16.08MB 复制新文件或目录到容器中
COPY /root-fs / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:e29a15772094115eb3dc0b36955ae125f23053c1815b79162970adcfa9eb2ac7",
    "RepoTags": [
        "authelia/authelia:4.39.23",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia:4.39.23"
    ],
    "RepoDigests": [
        "authelia/authelia@sha256:0b6409d5cfa1bc244812fa4094f0272421ac156b864ed4178c60480c3f6d3ee9",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/authelia/authelia@sha256:3890e01d93a3d4ea382f16b0502214172b92dd06c0c46967e314bbead6e14565"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-09-08T11:22:13.745524953Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "9091/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/app:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PUID=0",
            "PGID=0",
            "X_AUTHELIA_CONFIG=/config/configuration.yml"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "/app/healthcheck.sh"
            ],
            "Interval": 30000000000,
            "Timeout": 3000000000,
            "StartPeriod": 60000000000
        },
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": [
            "/app/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.authors": "Authelia Team \u003cteam@authelia.com\u003e",
            "org.opencontainers.image.base.name": "docker.io/authelia/base:4.39.23@sha256:1cc26fd0d72b9e794593bebaa521d41afdee7df0a747a966d58c654ac401abb8",
            "org.opencontainers.image.created": "2026-09-08T21:22:06+10:00",
            "org.opencontainers.image.description": "Authelia is an open-source authentication and authorization server and portal fulfilling the identity and access management (IAM) role of information security in providing multi-factor authentication and single sign-on (SSO) for your applications via a web portal. Authelia is an OpenID Connect 1.0 Provider which is OpenID Certified™ allowing comprehensive integrations and acts as a companion for common reverse proxies.",
            "org.opencontainers.image.documentation": "https://www.authelia.com",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.ref.name": "4.39.23",
            "org.opencontainers.image.revision": "f1f520f607452d5531ef6c5a818e2534676a4809",
            "org.opencontainers.image.source": "https://github.com/authelia/authelia/tree/f1f520f607452d5531ef6c5a818e2534676a4809",
            "org.opencontainers.image.title": "authelia",
            "org.opencontainers.image.url": "https://github.com/authelia/authelia/pkgs/container/authelia",
            "org.opencontainers.image.vendor": "Authelia",
            "org.opencontainers.image.version": "4.39.23"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 79380899,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/c0ff956dd6ef95cff9eed807a21e7524b9fdaee6cc9aa5b2cabcdf6b3a2117f3/diff:/var/lib/docker/overlay2/25be8362776534827df81a28ca4b304cf9353ea0191aa15bf18b607dcf9b60f1/diff:/var/lib/docker/overlay2/db7e8f032870159510138a5513916d7d89b488ffca6253e1824c724c1e3209a9/diff",
            "MergedDir": "/var/lib/docker/overlay2/c87f498180562e4dc7dd4b97d748ab37ba2b0c6f6c7efda8cc14a41204104f69/merged",
            "UpperDir": "/var/lib/docker/overlay2/c87f498180562e4dc7dd4b97d748ab37ba2b0c6f6c7efda8cc14a41204104f69/diff",
            "WorkDir": "/var/lib/docker/overlay2/c87f498180562e4dc7dd4b97d748ab37ba2b0c6f6c7efda8cc14a41204104f69/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:2e8faa22e414be0360f0076809608a243e6b73bd0ffa748fbc3877ca0ba5912f",
            "sha256:6ff7ca84f6ceb2640d6c1c301d2694e959ec85ea64b86de59b44bf49099aa5cd",
            "sha256:7bb81de4198607f30a0386923487151dba64e7c27cf426688f880db5f7ca4fa8",
            "sha256:85fee845a531ae62ec9ace5f48cb6b55f9f9e9ee88e8a2bef65dfbe28c7b7af6"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-09T12:32:46.255115456+08:00"
    }
}

更多版本

docker.io/authelia/authelia:4.38.17

linux/amd64 docker.io55.48MB2024-12-01 17:31
557

docker.io/authelia/authelia:4.38.19

linux/amd64 docker.io56.87MB2025-06-20 15:26
451

docker.io/authelia/authelia:4.39.4

linux/amd64 docker.io73.25MB2025-07-06 16:50
483

docker.io/authelia/authelia:4.39.15

linux/amd64 docker.io74.31MB2025-12-16 18:22
471

docker.io/authelia/authelia:4.39.20

linux/amd64 docker.io77.57MB2026-06-05 12:49
195

docker.io/authelia/authelia:4.37.5

linux/amd64 docker.io54.71MB2026-06-28 01:28
128

docker.io/authelia/authelia:4.39.23

linux/amd64 docker.io79.38MB2026-09-09 12:32
14
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×