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

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

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

源镜像 ghcr.io/toeverything/affine:0.26.2
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.2
镜像ID sha256:99ae5ac317ee699f6eb1379c891aba1bb628c70272f9b3291c4b621ec76447e6
镜像TAG 0.26.2
大小 782.76MB
镜像源 ghcr.io
CMD node ./dist/main.js
启动入口 docker-entrypoint.sh
工作目录 /app
OS/平台 linux/amd64
浏览量 14 次
贡献者
镜像创建 2026-02-08T20:43:35.917055515Z
同步时间 2026-02-16 11:30
开放端口
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.2
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.2  ghcr.io/toeverything/affine:0.26.2

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-02-09 04:43:35  0.00B 设置默认要执行的命令
CMD ["node" "./dist/main.js"]
                        
# 2026-02-09 04:43:35  0.00B 声明容器运行时监听的端口
EXPOSE map[3010/tcp:{}]
                        
# 2026-02-09 04:43:35  0.00B 设置环境变量 LD_PRELOAD
ENV LD_PRELOAD=libjemalloc.so.2
                        
# 2026-02-09 04:43:35  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-09 04:43:32  548.00MB 复制新文件或目录到容器中
COPY /app /app # buildkit
                        
# 2026-02-09 04:43:03  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:99ae5ac317ee699f6eb1379c891aba1bb628c70272f9b3291c4b621ec76447e6",
    "RepoTags": [
        "ghcr.io/toeverything/affine:0.26.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.26.2"
    ],
    "RepoDigests": [
        "ghcr.io/toeverything/affine@sha256:0690dd1be1feafe8a9a31f28391d2f531f2d2cac5d9f31b43c44ed7266d3be19",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine@sha256:53dd5e924138ae3f6c2c3644c97bd2fdafbce395ee689cf516f3218089fc277b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-02-08T20:43:35.917055515Z",
    "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": 782763989,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/2c2d442352a8e7ff8af51212bd3f083e2ecb1b4c043509fffe52ef7b156f23f4/diff:/var/lib/docker/overlay2/1bb82edbf3b3c1b1e605c866cb0a4f6f0eafab46128cc74c071623377f150ec4/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/8693a29a0a043b87edbcd98fa229a5f51746f1b8778b2a1874d35a13c982bf31/merged",
            "UpperDir": "/var/lib/docker/overlay2/8693a29a0a043b87edbcd98fa229a5f51746f1b8778b2a1874d35a13c982bf31/diff",
            "WorkDir": "/var/lib/docker/overlay2/8693a29a0a043b87edbcd98fa229a5f51746f1b8778b2a1874d35a13c982bf31/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e48af84b2108a5d73effd9e16685b42ac33e7994e606398c46690918f5f3604a",
            "sha256:d8de3d0b3cf0d7099ff924f7b432effe013cf55c6fd0efce4d2789b174778d55",
            "sha256:ba32dace95a0e9d300b843330f003a9f196c868d6621cb4855306b659ce002b7",
            "sha256:cfbed5f930523cd9f0530efd08075d7ba4176c61bb75ffc4480954e2b8f3fd58",
            "sha256:791847781930dd3a2b77349a1354019322648e7690476f8a509c1a5e6bf036f3",
            "sha256:893bc1f21011775e611811da879ec271abc0c360dd0005d651e68b75d16073e1",
            "sha256:5becefdbdc1808d99f5d6a8a7c60336493f3320c018c5ddffc594039900640ce",
            "sha256:f67e2ab19968dcaaa5429b0bf5fac32b378a648008c97647263d7f3861ba825f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-16T11:30:06.833516174+08:00"
    }
}

更多版本

ghcr.io/toeverything/affine-graphql:stable

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

ghcr.io/toeverything/affine-front:canary

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

ghcr.io/toeverything/affine-graphql:canary

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

ghcr.io/toeverything/affine-front:stable

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

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

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

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

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

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

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

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

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

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

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

ghcr.io/toeverything/affine:0.23.0

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

ghcr.io/toeverything/affine:0.23.1

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

ghcr.io/toeverything/affine:0.23.2

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

ghcr.io/toeverything/affine:0.24.0

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

ghcr.io/toeverything/affine:0.24.1

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

ghcr.io/toeverything/affine:0.25.1

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

ghcr.io/toeverything/affine:stable

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

ghcr.io/toeverything/affine:0.25.4

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

ghcr.io/toeverything/affine:0.25.5

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

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

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

ghcr.io/toeverything/affine:0.25.6

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

ghcr.io/toeverything/affine:0.25.7

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

ghcr.io/toeverything/affine:0.26.0

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

ghcr.io/toeverything/affine:0.26.2

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