ghcr.io/toeverything/affine:0.26.0 linux/amd64

ghcr.io/toeverything/affine:0.26.0 - 国内下载镜像源 浏览次数:9

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

源镜像 ghcr.io/toeverything/affine:0.26.0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.0
镜像ID sha256:b8148e75f585ea851d3ae5c2fc3d4814c41063e50369938ee51f99e2c9152176
镜像TAG 0.26.0
大小 782.89MB
镜像源 ghcr.io
CMD node ./dist/main.js
启动入口 docker-entrypoint.sh
工作目录 /app
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2026-02-06T12:05:15.257891239Z
同步时间 2026-02-08 20:55
开放端口
3010/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NODE_VERSION=22.22.0 YARN_VERSION=1.22.22 LD_PRELOAD=libjemalloc.so.2

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#ghcr.io/toeverything/affine:0.26.0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.0#' 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.0 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.0  ghcr.io/toeverything/affine:0.26.0'

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-02-06 20:05:15  0.00B 设置默认要执行的命令
CMD ["node" "./dist/main.js"]
                        
# 2026-02-06 20:05:15  0.00B 声明容器运行时监听的端口
EXPOSE map[3010/tcp:{}]
                        
# 2026-02-06 20:05:15  0.00B 设置环境变量 LD_PRELOAD
ENV LD_PRELOAD=libjemalloc.so.2
                        
# 2026-02-06 20:05:15  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-02-06 20:05:11  548.13MB 复制新文件或目录到容器中
COPY /app /app # buildkit
                        
# 2026-02-06 20:04:38  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-02-03 10:49:59  0.00B 设置默认要执行的命令
CMD ["node"]
                        
# 2026-02-03 10:49:59  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-02-03 10:49:59  388.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2026-02-03 10:49:59  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-02-03 10:49:46  0.00B 设置环境变量 YARN_VERSION
ENV YARN_VERSION=1.22.22
                        
# 2026-02-03 10:49:46  144.67MB 执行命令并创建新的镜像层
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';;       i386) ARCH='x86' OPENSSL_ARCH='linux-elf';;       *) 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-02-03 10:49:46  0.00B 设置环境变量 NODE_VERSION
ENV NODE_VERSION=22.22.0
                        
# 2026-02-03 10:49:24  8.90KB 执行命令并创建新的镜像层
RUN /bin/sh -c groupadd --gid 1000 node   && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
                        
# 2026-02-02 08:00:00  74.81MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1769990400'
                        
                    

镜像信息

{
    "Id": "sha256:b8148e75f585ea851d3ae5c2fc3d4814c41063e50369938ee51f99e2c9152176",
    "RepoTags": [
        "ghcr.io/toeverything/affine:0.26.0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.0"
    ],
    "RepoDigests": [
        "ghcr.io/toeverything/affine@sha256:1e49d4ca17a06475940c24f78e44896b01174c7b15e022f79f157b99bb629145",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine@sha256:c8ff3578eac48ee1dfa588075fc5cb9e3511e016ce01f3a2b7d3bf7c8d45a226"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-02-06T12:05:15.257891239Z",
    "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.0",
            "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": 782887567,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/8a507ec8027825cfa92ef63690382effa8e61f192516d96f6fde792896c1ab77/diff:/var/lib/docker/overlay2/581080cd8bafb1d95958ec572b000742a7db85d1e57d6a5d58647164c2d278df/diff:/var/lib/docker/overlay2/57984cee26e3513ce9e5d6cd78be151e49f707687c5d7e9e7190f23373f70816/diff:/var/lib/docker/overlay2/70c8cc046a79805ee2f24c67dce3a70064caf1f123168e0e43379f7f702e9d7d/diff:/var/lib/docker/overlay2/ae138bc9e1be1c7b3e3253f88c00e22a5233f6df4800e95ad49a40a2ae9cd4f2/diff:/var/lib/docker/overlay2/7a4886e25b5bd9a4b4f8434952cecbd2e7c1dcab709b5f0ff0345da62aa916d5/diff:/var/lib/docker/overlay2/a37951ade2db2b9f2862e7d5292aee8298bd317b9e427b09b565444962639344/diff",
            "MergedDir": "/var/lib/docker/overlay2/a35ddb261f658a19d5a0343e776bf04da4e6b8aea9b84dca69b0c7a935bf3234/merged",
            "UpperDir": "/var/lib/docker/overlay2/a35ddb261f658a19d5a0343e776bf04da4e6b8aea9b84dca69b0c7a935bf3234/diff",
            "WorkDir": "/var/lib/docker/overlay2/a35ddb261f658a19d5a0343e776bf04da4e6b8aea9b84dca69b0c7a935bf3234/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e48af84b2108a5d73effd9e16685b42ac33e7994e606398c46690918f5f3604a",
            "sha256:d8de3d0b3cf0d7099ff924f7b432effe013cf55c6fd0efce4d2789b174778d55",
            "sha256:ba32dace95a0e9d300b843330f003a9f196c868d6621cb4855306b659ce002b7",
            "sha256:cfbed5f930523cd9f0530efd08075d7ba4176c61bb75ffc4480954e2b8f3fd58",
            "sha256:791847781930dd3a2b77349a1354019322648e7690476f8a509c1a5e6bf036f3",
            "sha256:cfb3b155584814324996ea974fce0f81b633a4c9ae384527c17c8b02c06d98f6",
            "sha256:cbc1f5d40ea283119749544af92966af070dfdeb0f1ac0caff258cda784f1b18",
            "sha256:589475291fbf8a31827adedeeff1ceb07bc70c8c3408d8eb21a8a42b2b560a3f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-08T20:54:27.672341306+08:00"
    }
}

更多版本

ghcr.io/toeverything/affine-graphql:stable

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

ghcr.io/toeverything/affine-front:canary

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

ghcr.io/toeverything/affine-graphql:canary

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

ghcr.io/toeverything/affine-front:stable

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

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

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

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

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

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

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

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

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

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

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

ghcr.io/toeverything/affine:0.23.0

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

ghcr.io/toeverything/affine:0.23.1

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

ghcr.io/toeverything/affine:0.23.2

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

ghcr.io/toeverything/affine:0.24.0

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

ghcr.io/toeverything/affine:0.24.1

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

ghcr.io/toeverything/affine:0.25.1

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

ghcr.io/toeverything/affine:stable

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

ghcr.io/toeverything/affine:0.25.4

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

ghcr.io/toeverything/affine:0.25.5

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

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

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

ghcr.io/toeverything/affine:0.25.6

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

ghcr.io/toeverything/affine:0.25.7

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

ghcr.io/toeverything/affine:0.26.0

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