ghcr.io/keeweb/keeweb:latest linux/amd64

ghcr.io/keeweb/keeweb:latest - 国内下载镜像源 浏览次数:45

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

源镜像 ghcr.io/keeweb/keeweb:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest
镜像ID sha256:fdf555f4f0744135dc0b14a30531089bf4d244de37e4daa7700ca73d873d5101
镜像TAG latest
大小 49.90MB
镜像源 ghcr.io
CMD
启动入口 /init
工作目录 /config/www
OS/平台 linux/amd64
浏览量 45 次
贡献者
镜像创建 2024-12-19T02:40:03.831848374Z
同步时间 2025-01-08 15:54
更新时间 2025-02-19 06:00
开放端口
443/tcp 80/tcp
环境变量
PATH=/kwpy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-images VIRTUAL_ENV=/kwpy TZ=Etc/UTC URL_REPO_BASE=https://github.com/keeweb/alpine-base/pkgs/container/alpine-base URL_REPO_APP=https://github.com/keeweb/keeweb/pkgs/container/keeweb FILE_NAME=index.html PORT_HTTP=80 PORT_HTTPS=443
镜像标签
Keeweb v build-date: : build_version Aetherinox: maintainer Aetherinox, Antelle: org.opencontainers.image.authors 2024-12-19T02:40:00.286Z: org.opencontainers.image.created Free cross-platform password manager compatible with KeePass: org.opencontainers.image.description https://github.com/keeweb/keeweb: org.opencontainers.image.documentation NOASSERTION: org.opencontainers.image.licenses 1c1d1dfc94ebfaca1804470ae8c7a2aee71be864: org.opencontainers.image.revision https://github.com/keeweb/keeweb: org.opencontainers.image.source keeweb: org.opencontainers.image.title https://github.com/keeweb/keeweb: org.opencontainers.image.url Keeweb: org.opencontainers.image.vendor 1.19.0-amd64: org.opencontainers.image.version
镜像安全扫描 查看Trivy扫描报告

系统OS: alpine 3.20.3 扫描引擎: Trivy 扫描时间: 2025-01-08 15:56

低危漏洞:0 中危漏洞:0 高危漏洞:0 严重漏洞:0

Docker拉取命令 无权限下载?点我修复

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest  ghcr.io/keeweb/keeweb:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest  ghcr.io/keeweb/keeweb:latest

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2024-12-19 10:40:03  0.00B 声明容器运行时监听的端口
EXPOSE map[443/tcp:{} 80/tcp:{}]
                        
# 2024-12-19 10:40:03  16.54MB 复制新文件或目录到容器中
COPY root/ / # buildkit
                        
# 2024-12-19 10:40:03  0.00B 设置工作目录为/config/www
WORKDIR /config/www
                        
# 2024-12-19 10:40:03  6.57MB 执行命令并创建新的镜像层
RUN |3 BUILD_DATE= VERSION= NGINX_VERSION= /bin/sh -c if [ -z ${NGINX_VERSION+x} ]; then       NGINX_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.20/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp       && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://');   fi &&   apk add --no-cache       wget       logrotate       openssl       apache2-utils       nginx==${NGINX_VERSION}       nginx-mod-http-fancyindex==${NGINX_VERSION} &&   echo "**** Install Build Packages ****" &&   echo "**** Configure Nginx ****" &&   echo 'fastcgi_param  HTTP_PROXY         ""; # https://httpoxy.org/' >>       /etc/nginx/fastcgi_params &&   echo 'fastcgi_param  PATH_INFO          $fastcgi_path_info; # http://nginx.org/en/docs/http/ngx_http_fastcgi_module.html#fastcgi_split_path_info' >>       /etc/nginx/fastcgi_params &&   echo 'fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name; # https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/#connecting-nginx-to-php-fpm' >>       /etc/nginx/fastcgi_params &&   echo 'fastcgi_param  SERVER_NAME        $host; # Send HTTP_HOST as SERVER_NAME. If HTTP_HOST is blank, send the value of server_name from nginx (default is `_`)' >>       /etc/nginx/fastcgi_params &&   rm -f /etc/nginx/http.d/default.conf &&   rm -f /etc/nginx/conf.d/stream.conf &&   rm -f /config/www/index.html &&   echo "**** Setup Logrotate ****" &&   sed -i "s#/var/log/messages {}.*# #g"       /etc/logrotate.conf &&   sed -i 's#/usr/sbin/logrotate /etc/logrotate.conf#/usr/sbin/logrotate /etc/logrotate.conf -s /config/log/logrotate.status#g'       /etc/periodic/daily/logrotate # buildkit
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 PORT_HTTPS
ENV PORT_HTTPS=443
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 PORT_HTTP
ENV PORT_HTTP=80
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 FILE_NAME
ENV FILE_NAME=index.html
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 URL_REPO_APP
ENV URL_REPO_APP=https://github.com/keeweb/keeweb/pkgs/container/keeweb
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 URL_REPO_BASE
ENV URL_REPO_BASE=https://github.com/keeweb/alpine-base/pkgs/container/alpine-base
                        
# 2024-12-19 10:40:03  0.00B 设置环境变量 TZ
ENV TZ=Etc/UTC
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL build_version=Keeweb v build-date: 
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.licenses=MIT
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.url=https://github.com/keeweb/keeweb/pkgs/container/keeweb
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.documentation=https://github.com/keeweb/keeweb
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.source=https://github.com/keeweb/keeweb
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.description=Keeweb password manager
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.title=Keeweb Password Manager
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.vendor=Keeweb
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=Aetherinox, Antelle
                        
# 2024-12-19 10:40:03  0.00B 添加元数据标签
LABEL maintainer=Aetherinox
                        
# 2024-12-19 10:40:03  0.00B 定义构建参数
ARG NGINX_VERSION
                        
# 2024-12-19 10:40:03  0.00B 定义构建参数
ARG VERSION
                        
# 2024-12-19 10:40:03  0.00B 定义构建参数
ARG BUILD_DATE
                        
# 2024-12-19 06:57:35  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2024-12-19 06:57:35  7.70KB 复制新文件或目录到容器中
COPY root/ / # buildkit
                        
# 2024-12-19 06:57:35  13.88MB 执行命令并创建新的镜像层
RUN |6 BUILD_DATE= VERSION= MODS_VERSION=v3 PKG_INST_VERSION=v1 KWOWN_VERSION=v1 WITHCONTENV_VERSION=v1 /bin/sh -c echo "**** INSTALLING RUNTIME PACKAGES ****" &&   apk add --no-cache     alpine-release     bash     ca-certificates     catatonit     coreutils     curl     findutils     jq     netcat-openbsd     procps-ng     shadow     tzdata &&   echo "**** CREATE keeweb USER AND GENERATE STRUCTURE ****" &&   groupmod -g 1000 users &&   useradd -u 911 -U -d /config -s /bin/false keeweb &&   usermod -G users keeweb &&   mkdir -p     /app     /config     /defaults     /kwpy &&   echo "**** CLEANUP ****" &&   rm -rf     /tmp/* # buildkit
                        
# 2024-12-19 06:57:34  0.00B 设置环境变量 PS1 HOME TERM S6_CMD_WAIT_FOR_SERVICES_MAXTIME S6_VERBOSITY S6_STAGE2_HOOK VIRTUAL_ENV PATH
ENV PS1=$(whoami)@$(hostname):$(pwd)\$  HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-images VIRTUAL_ENV=/kwpy PATH=/kwpy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2024-12-19 06:57:34  1.15KB 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/keeweb/keeweb/docker/core/kwown.v1 /usr/bin/kwown # buildkit
                        
# 2024-12-19 06:57:34  4.41KB 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/keeweb/keeweb/docker/core/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
                        
# 2024-12-19 06:57:34  27.41KB 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/keeweb/keeweb/docker/core/docker-images.v3 /docker-images # buildkit
                        
# 2024-12-19 06:57:34  0.00B 添加元数据标签
LABEL maintainer=Aetherinox
                        
# 2024-12-19 06:57:34  0.00B 添加元数据标签
LABEL build_version=Keeweb version:-  Build-date:- 
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG WITHCONTENV_VERSION=v1
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG KWOWN_VERSION=v1
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG PKG_INST_VERSION=v1
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG MODS_VERSION=v3
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG VERSION
                        
# 2024-12-19 06:57:34  0.00B 定义构建参数
ARG BUILD_DATE
                        
# 2024-12-19 06:57:34  12.88MB 复制新文件或目录到容器中
COPY /root-out/ / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:fdf555f4f0744135dc0b14a30531089bf4d244de37e4daa7700ca73d873d5101",
    "RepoTags": [
        "ghcr.io/keeweb/keeweb:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb:latest"
    ],
    "RepoDigests": [
        "ghcr.io/keeweb/keeweb@sha256:63235ac2656ab9b88f20be19fe721318a63c5015415faf4d3156cf830341b529",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/keeweb/keeweb@sha256:3e6fc52341b015bd51596faa2459bf993b52df598e30b6fd87f6e59bb9543039"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-12-19T02:40:03.831848374Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "443/tcp": {},
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/kwpy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PS1=$(whoami)@$(hostname):$(pwd)\\$ ",
            "HOME=/root",
            "TERM=xterm",
            "S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0",
            "S6_VERBOSITY=1",
            "S6_STAGE2_HOOK=/docker-images",
            "VIRTUAL_ENV=/kwpy",
            "TZ=Etc/UTC",
            "URL_REPO_BASE=https://github.com/keeweb/alpine-base/pkgs/container/alpine-base",
            "URL_REPO_APP=https://github.com/keeweb/keeweb/pkgs/container/keeweb",
            "FILE_NAME=index.html",
            "PORT_HTTP=80",
            "PORT_HTTPS=443"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/config/www",
        "Entrypoint": [
            "/init"
        ],
        "OnBuild": null,
        "Labels": {
            "build_version": "Keeweb v build-date: ",
            "maintainer": "Aetherinox",
            "org.opencontainers.image.authors": "Aetherinox, Antelle",
            "org.opencontainers.image.created": "2024-12-19T02:40:00.286Z",
            "org.opencontainers.image.description": "Free cross-platform password manager compatible with KeePass",
            "org.opencontainers.image.documentation": "https://github.com/keeweb/keeweb",
            "org.opencontainers.image.licenses": "NOASSERTION",
            "org.opencontainers.image.revision": "1c1d1dfc94ebfaca1804470ae8c7a2aee71be864",
            "org.opencontainers.image.source": "https://github.com/keeweb/keeweb",
            "org.opencontainers.image.title": "keeweb",
            "org.opencontainers.image.url": "https://github.com/keeweb/keeweb",
            "org.opencontainers.image.vendor": "Keeweb",
            "org.opencontainers.image.version": "1.19.0-amd64"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 49904839,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/1d52a21511a917e8e5b2f517db1b71461f70e0826d5e5260673d0cccd36ecd03/diff:/var/lib/docker/overlay2/e2adbd1069fc9e006a82896a9e7cb394c0c377f35ae0bdc2c9f54d2f2e69fb8a/diff:/var/lib/docker/overlay2/de6e337d7781f14142055e9410f2504c2785feb58923e0229eb5e202b9f4640b/diff:/var/lib/docker/overlay2/312bb73ecbe2394557ca0bd72d6eca67b5e71647e22f31e309afc5ccab999127/diff:/var/lib/docker/overlay2/8d6fe6da05759aedc1359ba5f26a41e2c334697a18bb03e989623f0a041067ac/diff:/var/lib/docker/overlay2/14178edf5fa00fa7ba96e593eef84d2329aa92663004bb50dd81a112898ed1fc/diff:/var/lib/docker/overlay2/ae90a7c9b94c9dc7b8f70d50890168f34e733377f4cd04309ea18681997a7101/diff:/var/lib/docker/overlay2/40781bb155bbaeca7434c30f11a7c53b203c8d13940bdc98c757556666348734/diff",
            "MergedDir": "/var/lib/docker/overlay2/8ba5586cc7ae1e30efbb82c93f37baca5763c32de5cc685fc92363e5bf2a32c6/merged",
            "UpperDir": "/var/lib/docker/overlay2/8ba5586cc7ae1e30efbb82c93f37baca5763c32de5cc685fc92363e5bf2a32c6/diff",
            "WorkDir": "/var/lib/docker/overlay2/8ba5586cc7ae1e30efbb82c93f37baca5763c32de5cc685fc92363e5bf2a32c6/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a04af86e6ab31f4c21ba5781ac485cb848cbf7794d5bce31cebdc74438cea90b",
            "sha256:b20e2543731da71dca4927bd64efbcef1fdb964421621c681ea6ceaa1dada720",
            "sha256:dded109a3fee301b1c0787d68e46f81d17a244cf615e8a6c715808fd4ca3140d",
            "sha256:8ad172895cda2b9e31512fce371861adf13bf21831d6e2d1a5f2f16a5eb1788d",
            "sha256:9f2315273d025c75bdd37d755c1fbe256926ba3345ee63765188ec6f7358063a",
            "sha256:da1419c24b113cf88f3ddd2d8cabe6eead5a239157c30b6c4f10d86644133b3f",
            "sha256:8546fbf9c7ef8218eb2c27bf82ed2a8d5603826647ea4a1f2af0b1af11347fe3",
            "sha256:7357d8f242e593738d9230730d8ae8a1ed52a349d42ebc1d674aa8827cf630f2",
            "sha256:a13c235002ea9394f5e453e8d5c16ec4e6cd6c6cc2713af7930301200912c9f9"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-01-08T15:54:27.772548453+08:00"
    }
}

更多版本

ghcr.io/keeweb/keeweb:latest

linux/amd64 ghcr.io49.90MB2025-01-08 15:54
44