logo
ghcr.io/tinyauthapp/tinyauth:v5
linux/amd64 ghcr.io

这个镜像是TinyAuth应用的容器化版本,TinyAuth是一个轻量级的身份认证服务,可用于为应用提供用户认证、授权等功能,适用于小型应用或微服务架构场景。

11
浏览次数
46.03MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5
源镜像
ghcr.io/tinyauthapp/tinyauth:v5
镜像ID
sha256:72bd746e462fe0d71e38fd5fa99979bfe444531d8b1a45e5b54e701fb04d80ac
镜像 TAG
v5
镜像大小
46.03MB
平台架构
linux/amd64
镜像源
ghcr.io
CMD
启动入口
tinyauth
工作目录
/tinyauth
OS/平台
linux/amd64
镜像创建
2026-07-30T18:02:22.301703786Z
同步时间
2026-09-03 10:17
浏览量
11 次
贡献者
🔌 开放端口 1
3000/tcp
📁 目录挂载 1
 /data
⚙️ 环境变量 2
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tinyauth 0
RUNTIME_ENV=docker 1
🏷️ 镜像标签 8
KeyValue
2026-07-30T18:01:01.952Z org.opencontainers.image.created
The tiniest OpenID Certified™ authorization and authentication server you have ever seen. org.opencontainers.image.description
AGPL-3.0 org.opencontainers.image.licenses
ad700e75e065e7d966f0ba4cb16fc851cad224c6 org.opencontainers.image.revision
https://github.com/tinyauthapp/tinyauth org.opencontainers.image.source
tinyauth org.opencontainers.image.title
https://github.com/tinyauthapp/tinyauth org.opencontainers.image.url
v5.1.3 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.24.1 Trivy 2026-09-03 10:17 查看完整报告
12
低危 LOW
8
中危 MEDIUM
12
高危 HIGH
1
严重 CRITICAL
受影响目标 (2)
ghcr.io/tinyauthapp/tinyauth:v5 (alpine 3.24.1) alpine tinyauth/tinyauth gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5  ghcr.io/tinyauthapp/tinyauth:v5

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5  ghcr.io/tinyauthapp/tinyauth:v5

Shell快速替换命令

sed -i 's#ghcr.io/tinyauthapp/tinyauth:v5#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5  ghcr.io/tinyauthapp/tinyauth:v5'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5  ghcr.io/tinyauthapp/tinyauth:v5'

镜像构建历史


# 2026-07-31 02:02:22  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["tinyauth"]
                        
# 2026-07-31 02:02:22  0.00B 指定检查容器健康状态的命令
HEALTHCHECK {Test:[CMD tinyauth healthcheck] Interval:30s Timeout:5s StartPeriod:5s StartInterval:0s Retries:3}
                        
# 2026-07-31 02:02:22  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tinyauth
                        
# 2026-07-31 02:02:22  0.00B 设置环境变量 RUNTIME_ENV
ENV RUNTIME_ENV=docker
                        
# 2026-07-31 02:02:22  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/data]
                        
# 2026-07-31 02:02:22  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c chown -R tinyauth:tinyauth /data # buildkit
                        
# 2026-07-31 02:02:22  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir -p /data/resources /data/oidc /data/tailscale # buildkit
                        
# 2026-07-31 02:02:22  3.06KB 执行命令并创建新的镜像层
RUN /bin/sh -c addgroup tinyauth && adduser -DH tinyauth -G tinyauth # buildkit
                        
# 2026-07-31 02:02:22  0.00B 声明容器运行时监听的端口
EXPOSE [3000/tcp]
                        
# 2026-07-31 02:02:22  37.61MB 复制新文件或目录到容器中
COPY /tinyauth/tinyauth ./ # buildkit
                        
# 2026-06-17 09:02:31  0.00B 设置工作目录为/tinyauth
WORKDIR /tinyauth
                        
# 2026-06-16 08:01:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:01:29  8.42MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:72bd746e462fe0d71e38fd5fa99979bfe444531d8b1a45e5b54e701fb04d80ac",
    "RepoTags": [
        "ghcr.io/tinyauthapp/tinyauth:v5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth:v5"
    ],
    "RepoDigests": [
        "ghcr.io/tinyauthapp/tinyauth@sha256:a1bde189951900f84a60f133c26a1ec7a3264073ec7875b548f4fbadb7f5f735",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/tinyauthapp/tinyauth@sha256:c7af531e37089636fc3246fbb466bb05bcc8e2a91d7cad640c707f8be8613409"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-30T18:02:22.301703786Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "3000/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tinyauth",
            "RUNTIME_ENV=docker"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD",
                "tinyauth",
                "healthcheck"
            ],
            "Interval": 30000000000,
            "Timeout": 5000000000,
            "StartPeriod": 5000000000,
            "Retries": 3
        },
        "Image": "",
        "Volumes": {
            "/data": {}
        },
        "WorkingDir": "/tinyauth",
        "Entrypoint": [
            "tinyauth"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.created": "2026-07-30T18:01:01.952Z",
            "org.opencontainers.image.description": "The tiniest OpenID Certified™ authorization and authentication server you have ever seen.",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "ad700e75e065e7d966f0ba4cb16fc851cad224c6",
            "org.opencontainers.image.source": "https://github.com/tinyauthapp/tinyauth",
            "org.opencontainers.image.title": "tinyauth",
            "org.opencontainers.image.url": "https://github.com/tinyauthapp/tinyauth",
            "org.opencontainers.image.version": "v5.1.3"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 46032370,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ccd9c822ec22afc2eb03d0c789bba3f21a401e97653acf08a4c376789bde3ac9/diff:/var/lib/docker/overlay2/9078a4ad52f4dd1f6a01cad3c41af1d2099914cdd2e3821a7d73400b52e9f939/diff:/var/lib/docker/overlay2/269f4db91d79117ded55a50c90a7e06bbc401b7fb5e356d8162e303a7f019d4a/diff:/var/lib/docker/overlay2/a74efcf1df1b29efe773f3f6a88cddad4061f2f761e839665d053d68a06e3865/diff:/var/lib/docker/overlay2/d51bd9f442769618005c9be653661c047116bf4ebe32b04db2ad4ca7bebb792d/diff",
            "MergedDir": "/var/lib/docker/overlay2/6489dc6692d942e78ae44227106b4285a4dbb5e8d6710d8e1fbaea1f278138d1/merged",
            "UpperDir": "/var/lib/docker/overlay2/6489dc6692d942e78ae44227106b4285a4dbb5e8d6710d8e1fbaea1f278138d1/diff",
            "WorkDir": "/var/lib/docker/overlay2/6489dc6692d942e78ae44227106b4285a4dbb5e8d6710d8e1fbaea1f278138d1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:34884abbe92863fce933ed7c39c0e045631af0ed86d5cc0dfbdf9fdca426ce3c",
            "sha256:73c3c66e736318e9f97123344c52ce9b853276da2b3db1ddee003710daa75093",
            "sha256:66ed7878462bbd1b29c4354c5b32c345e62f5b6a1c85ac502c730320e13c8511",
            "sha256:b8934a41f57032dc1db6c15557f26501148b3dabb7b3aecc6940a819d822f177",
            "sha256:ea5ab8c45ec8353708b06993ffbc39f659836fa4c12a5c18621983a337ec46db",
            "sha256:2474a9cce371b912e4f637bf4f15d93d798a653926828b62461f56402efdc571"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-03T10:17:42.636879183+08:00"
    }
}

更多版本

ghcr.io/tinyauthapp/tinyauth:v5

linux/amd64 ghcr.io46.03MB2026-09-03 10:17
10
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×