logo
ghcr.io/toeverything/affine:0.26.7
linux/amd64 ghcr.io

该镜像 ghcr.io/toeverything/affine 没有公开提供的描述信息。 要了解其具体内容,需要访问相关的项目页面或文档,或者查看镜像构建的源代码。

13
浏览次数
788.38MB
镜像大小
源镜像
ghcr.io/toeverything/affine:0.26.7
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7
镜像ID
sha256:d2d097e29ea6f7f4d29a71595e5c4cbaab74df90e8ec973629d6142df452a831
镜像 TAG
0.26.7
镜像大小
788.38MB
平台架构
linux/amd64
镜像源
ghcr.io
CMD
node ./dist/main.js
启动入口
docker-entrypoint.sh
工作目录
/app
OS/平台
linux/amd64
镜像创建
2026-05-30T10:45:44.141503511Z
同步时间
2026-06-27 19:23
浏览量
13 次
贡献者
🔌 开放端口 1
3010/tcp
⚙️ 环境变量 4
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
NODE_VERSION=22.22.3 1
YARN_VERSION=1.22.22 2
LD_PRELOAD=libjemalloc.so.2 3
🛡️ 镜像安全扫描
debian 12.14 Trivy 2026-06-27 19:23 查看完整报告
91
低危 LOW
125
中危 MEDIUM
58
高危 HIGH
7
严重 CRITICAL
受影响目标 (2)
ghcr.io/toeverything/affine:0.26.7 (debian 12.14) debian Node.js node-pkg

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7  ghcr.io/toeverything/affine:0.26.7

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7  ghcr.io/toeverything/affine:0.26.7

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-05-30 18:45:44  0.00B 设置默认要执行的命令
CMD ["node" "./dist/main.js"]
                        
# 2026-05-30 18:45:44  0.00B 声明容器运行时监听的端口
EXPOSE map[3010/tcp:{}]
                        
# 2026-05-30 18:45:44  0.00B 设置环境变量 LD_PRELOAD
ENV LD_PRELOAD=libjemalloc.so.2
                        
# 2026-05-30 18:45:44  8.09MB 执行命令并创建新的镜像层
RUN /bin/sh -c apt-get update &&   apt-get install -y --no-install-recommends openssl libjemalloc2 &&   rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-05-30 18:45:39  552.99MB 复制新文件或目录到容器中
COPY /app /app # buildkit
                        
# 2026-05-30 18:44:58  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-05-20 07:28:38  0.00B 设置默认要执行的命令
CMD ["node"]
                        
# 2026-05-20 07:28:38  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-05-20 07:28:38  388.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2026-05-20 07:28:38  7.18MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex   && savedAptMark="$(apt-mark showmanual)"   && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends   && rm -rf /var/lib/apt/lists/*   && export GNUPGHOME="$(mktemp -d)"   && for key in     6A010C5166006599AA17F08146C2130DFD2497F5   ; do     { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ||     { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ;   done   && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz"   && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc"   && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz   && gpgconf --kill all   && rm -rf "$GNUPGHOME"   && mkdir -p /opt   && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/   && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn   && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg   && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz   && apt-mark auto '.*' > /dev/null   && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; }   && find /usr/local -type f -executable -exec ldd '{}' ';'     | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }'     | sort -u     | xargs -r dpkg-query --search     | cut -d: -f1     | sort -u     | xargs -r apt-mark manual   && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false   && yarn --version   && rm -rf /tmp/* # buildkit
                        
# 2026-05-20 07:28:26  0.00B 设置环境变量 YARN_VERSION
ENV YARN_VERSION=1.22.22
                        
# 2026-05-20 07:28:26  145.28MB 执行命令并创建新的镜像层
RUN /bin/sh -c ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)"     && case "${dpkgArch##*-}" in       amd64) ARCH='x64' OPENSSL_ARCH='linux-x86_64';;       ppc64el) ARCH='ppc64le' OPENSSL_ARCH='linux-ppc64le';;       s390x) ARCH='s390x' OPENSSL_ARCH='linux*-s390x';;       arm64) ARCH='arm64' OPENSSL_ARCH='linux-aarch64';;       armhf) ARCH='armv7l' OPENSSL_ARCH='linux-armv4';;       *) echo "unsupported architecture"; exit 1 ;;     esac     && set -ex     && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends     && rm -rf /var/lib/apt/lists/*     && export GNUPGHOME="$(mktemp -d)"     && for key in       5BE8A3F6C8A5C01D106C0AD820B1A390B168D356       DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7       CC68F5A3106FF448322E48ED27F5E38D5B0A215F       8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600       890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4       C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C       108F52B48DB57BB0CC439B2997B01419BD92F80A       A363A499291CBBC940DD62E41F10027AF002F8B0     ; do       { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ||       { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ;     done     && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz"     && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc"     && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc     && gpgconf --kill all     && rm -rf "$GNUPGHOME"     && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c -     && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner     && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt     && find /usr/local/include/node/openssl/archs -mindepth 1 -maxdepth 1 ! -name "$OPENSSL_ARCH" -exec rm -rf {} \;     && apt-mark auto '.*' > /dev/null     && find /usr/local -type f -executable -exec ldd '{}' ';'       | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }'       | sort -u       | xargs -r dpkg-query --search       | cut -d: -f1       | sort -u       | xargs -r apt-mark manual     && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false     && ln -s /usr/local/bin/node /usr/local/bin/nodejs     && node --version     && npm --version     && rm -rf /tmp/* # buildkit
                        
# 2026-05-20 07:28:26  0.00B 设置环境变量 NODE_VERSION
ENV NODE_VERSION=22.22.3
                        
# 2026-05-20 07:27:22  8.90KB 执行命令并创建新的镜像层
RUN /bin/sh -c groupadd --gid 1000 node   && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
                        
# 2026-05-18 08:00:00  74.83MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1779062400'
                        
                    

镜像信息

{
    "Id": "sha256:d2d097e29ea6f7f4d29a71595e5c4cbaab74df90e8ec973629d6142df452a831",
    "RepoTags": [
        "ghcr.io/toeverything/affine:0.26.7",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.7"
    ],
    "RepoDigests": [
        "ghcr.io/toeverything/affine@sha256:74baac632031260f8c1c8ba34d9734b5addba0b8e72d6d9b9721e39f77738e94",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine@sha256:3eefbce1631642c894b17b0d01bee65c9ff567e924c2b33a2714e655b4ab2509"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-05-30T10:45:44.141503511Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "3010/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NODE_VERSION=22.22.3",
            "YARN_VERSION=1.22.22",
            "LD_PRELOAD=libjemalloc.so.2"
        ],
        "Cmd": [
            "node",
            "./dist/main.js"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 788378382,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/237f4de5fb6259983714457964d13a71d3eb9d5746c8402c164ffdd322fc0a74/diff:/var/lib/docker/overlay2/e75cf4cf0024976b049ba366904df92401d213cf5067c425750238d1ed136f4a/diff:/var/lib/docker/overlay2/199402883a8a4adc40faf4005d94bf22f738b1d5372d1b2cfef1b779a0006798/diff:/var/lib/docker/overlay2/422ea017af87e5f7c7311fb7460b4b439522e645e7d66f963bf01a07b3cd28eb/diff:/var/lib/docker/overlay2/03c6082b734c5eaf93f0f2f93df67860c98ef70b20962389fcafd2b57c95b329/diff:/var/lib/docker/overlay2/38e9d516cc0cb72818caf420627b05c8b921084b160643b04d9563a57d0194e4/diff:/var/lib/docker/overlay2/f31bfa56a7a89043b8b344f0b40dd25ed8ef40dde9d94740552e14f9bd2c73ab/diff",
            "MergedDir": "/var/lib/docker/overlay2/02ea3a41076b5c9bc4cd4f53bf81446bbd5dbad8ea78696547a5451d0a7a9b50/merged",
            "UpperDir": "/var/lib/docker/overlay2/02ea3a41076b5c9bc4cd4f53bf81446bbd5dbad8ea78696547a5451d0a7a9b50/diff",
            "WorkDir": "/var/lib/docker/overlay2/02ea3a41076b5c9bc4cd4f53bf81446bbd5dbad8ea78696547a5451d0a7a9b50/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:b2008ac19409fa6fee4b52596271400498aebd0be04dffac5351bd1dcf230f2a",
            "sha256:f991d7c79d12d337fc410d965cc026f724f2a2cec9b21946729e7e95f328b612",
            "sha256:eb864f7a939670d0e5d5e670eb52af930a76d0ea72d406e2fd33974ed6a001cf",
            "sha256:ee296e343ee4fe382b637d01c39dfb85d950f5ff7b737b92431e3ef35dca43b8",
            "sha256:af21bd06fa57cc48d6b6a93c303a63b67c8926f17fd21ca9687480c1cc525f30",
            "sha256:d01382e5ca7b94c520e99e656687ed34c69da9636f23dd580c78365ae1f4be12",
            "sha256:e4ed7b4241c55d3dee18aa15215470b13b469c53a0730f0a08d898078bc5bd4f",
            "sha256:cbb524a3c9ca0c98217a218ce82c8fc5a8b2789753b272fd0c39f89f965e3339"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-06-27T19:22:46.034784985+08:00"
    }
}

更多版本

ghcr.io/toeverything/affine-graphql:stable

linux/amd64 ghcr.io1.21GB2024-09-24 11:32
2067

ghcr.io/toeverything/affine-front:canary

linux/amd64 ghcr.io613.14MB2024-09-24 11:34
591

ghcr.io/toeverything/affine-graphql:canary

linux/amd64 ghcr.io1.21GB2024-09-24 11:36
791

ghcr.io/toeverything/affine-front:stable

linux/amd64 ghcr.io613.12MB2024-09-24 11:38
1094

ghcr.io/toeverything/affine-graphql:beta-5938b9a

linux/amd64 ghcr.io900.70MB2025-02-06 17:22
459

ghcr.io/toeverything/affine-graphql:canary-8a5e26d

linux/amd64 ghcr.io964.81MB2025-02-12 15:27
543

ghcr.io/toeverything/affine-graphql:stable-e043ecf

linux/amd64 ghcr.io1.13GB2025-05-12 16:28
675

ghcr.io/toeverything/affine:0.23.0-beta.8

linux/amd64 ghcr.io1.04GB2025-07-07 20:34
544

ghcr.io/toeverything/affine-graphql:stable-e98f035

linux/amd64 ghcr.io1.04GB2025-07-07 20:43
633

ghcr.io/toeverything/affine:0.23.0

linux/amd64 ghcr.io1.04GB2025-07-17 12:33
415

ghcr.io/toeverything/affine:0.23.1

linux/amd64 ghcr.io1.04GB2025-07-18 17:25
1818

ghcr.io/toeverything/affine:0.23.2

linux/amd64 ghcr.io1.04GB2025-07-23 22:37
508

ghcr.io/toeverything/affine:0.24.0

linux/amd64 ghcr.io1.06GB2025-08-13 02:55
824

ghcr.io/toeverything/affine:0.24.1

linux/amd64 ghcr.io1.09GB2025-08-20 21:28
502

ghcr.io/toeverything/affine:0.25.1

linux/amd64 ghcr.io1.09GB2025-10-18 13:12
315

ghcr.io/toeverything/affine:stable

linux/amd64 ghcr.io1.09GB2025-11-06 09:46
516

ghcr.io/toeverything/affine:0.25.4

linux/amd64 ghcr.io1.09GB2025-11-16 10:38
265

ghcr.io/toeverything/affine:0.25.5

linux/amd64 ghcr.io1.09GB2025-11-16 11:07
310

ghcr.io/toeverything/affine-graphql:canary-011f92f

linux/amd64 ghcr.io1.04GB2025-11-25 19:42
304

ghcr.io/toeverything/affine:0.25.6

linux/amd64 ghcr.io1.09GB2025-12-05 15:13
244

ghcr.io/toeverything/affine:0.25.7

linux/amd64 ghcr.io1.10GB2025-12-13 20:52
433

ghcr.io/toeverything/affine:0.26.0

linux/amd64 ghcr.io782.89MB2026-02-08 20:55
251

ghcr.io/toeverything/affine:0.26.2

linux/amd64 ghcr.io782.76MB2026-02-16 11:30
249

ghcr.io/toeverything/affine:0.26.3

linux/amd64 ghcr.io789.00MB2026-03-21 19:21
222

ghcr.io/toeverything/affine:0.26.7

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