logo
ghcr.io/toeverything/affine:0.27.3
linux/amd64 ghcr.io linteresting 贡献

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

17
浏览次数
659.99MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.27.3
源镜像
ghcr.io/toeverything/affine:0.27.3
镜像ID
sha256:00fc2538561288d2c870d4b395b42e34cbfbb287347bf6c2e77d32c726e44eff
镜像 TAG
0.27.3
镜像大小
659.99MB
平台架构
linux/amd64
镜像源
ghcr.io
CMD
node ./dist/main.js
启动入口
docker-entrypoint.sh
工作目录
/app
OS/平台
linux/amd64
镜像创建
2026-07-23T10:02:08.47639337Z
同步时间
2026-07-31 11:25
浏览量
17 次
贡献者
avatar linteresting
🔌 开放端口 1
3010/tcp
⚙️ 环境变量 4
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
NODE_VERSION=22.23.1 1
YARN_VERSION=1.22.22 2
LD_PRELOAD=libjemalloc.so.2 3
🛡️ 镜像安全扫描
debian 12.15 Trivy 2026-07-31 11:25 查看完整报告
77
低危 LOW
67
中危 MEDIUM
27
高危 HIGH
6
严重 CRITICAL
受影响目标 (2)
ghcr.io/toeverything/affine:0.27.3 (debian 12.15) debian Node.js node-pkg

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-07-23 18:02:08  0.00B 设置默认要执行的命令
CMD ["node" "./dist/main.js"]
                        
# 2026-07-23 18:02:08  0.00B 声明容器运行时监听的端口
EXPOSE map[3010/tcp:{}]
                        
# 2026-07-23 18:02:08  0.00B 设置环境变量 LD_PRELOAD
ENV LD_PRELOAD=libjemalloc.so.2
                        
# 2026-07-23 18:02:08  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-07-23 18:02:04  424.57MB 复制新文件或目录到容器中
COPY /app /app # buildkit
                        
# 2026-07-23 18:01:29  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-07-14 09:48:37  0.00B 设置默认要执行的命令
CMD ["node"]
                        
# 2026-07-14 09:48:37  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-07-14 09:48:37  388.00B 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2026-07-14 09:48:37  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-07-14 09:48:25  0.00B 设置环境变量 YARN_VERSION
ENV YARN_VERSION=1.22.22
                        
# 2026-07-14 09:48:25  145.31MB 执行命令并创建新的镜像层
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-07-14 09:48:25  0.00B 设置环境变量 NODE_VERSION
ENV NODE_VERSION=22.23.1
                        
# 2026-07-14 09:47:21  8.90KB 执行命令并创建新的镜像层
RUN /bin/sh -c groupadd --gid 1000 node   && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
                        
# 2026-07-13 08:00:00  74.83MB 
# debian.sh --arch 'amd64' out/ 'bookworm' '@1783900800'
                        
                    

镜像信息

{
    "Id": "sha256:00fc2538561288d2c870d4b395b42e34cbfbb287347bf6c2e77d32c726e44eff",
    "RepoTags": [
        "ghcr.io/toeverything/affine:0.27.3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine:0.27.3"
    ],
    "RepoDigests": [
        "ghcr.io/toeverything/affine@sha256:d9d145f9f47b862d1fa96e2a887052b5762846237f75fbb077be990ef646e05c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/toeverything/affine@sha256:1c9b879999ac3ec3c7848204c6c78b3ec21a2d1d27d9bef4e4d0e5b87551406a"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-23T10:02:08.47639337Z",
    "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.23.1",
            "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": 659993996,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0f3582ac1a4ac5853114e2af87103e45c61edc2d91bd74cceb516397a46bb469/diff:/var/lib/docker/overlay2/506f7efcf20a342903f660f2ccb49d0c2b2849807bb1af0dd91bd9d1d32eb5ab/diff:/var/lib/docker/overlay2/4965c6a48e28ba3e3b923fd420ffb1f64bc4d1a7af6ae2b18c44163921e3fe9e/diff:/var/lib/docker/overlay2/344fcf0fe01f1b7d973e59feee60674337d50a48f1d5467c9df898708a3b56d4/diff:/var/lib/docker/overlay2/a01dd07d628c1079b4997c2b73d947dead319064e245842550bc1a8a4e02322a/diff:/var/lib/docker/overlay2/62ba0120d7e8444ca6b0fe57a4da2cbb202ad550407b9aac2ec5f711528a7df6/diff:/var/lib/docker/overlay2/d77ab34e1c78a8baeb136433a97c3ff8eb97e8c82c545b269cf49745e4f9f92e/diff",
            "MergedDir": "/var/lib/docker/overlay2/fd3f446361f474e15ee388af2749ec9a24ee24da5e1d05642de1208e2e756c6a/merged",
            "UpperDir": "/var/lib/docker/overlay2/fd3f446361f474e15ee388af2749ec9a24ee24da5e1d05642de1208e2e756c6a/diff",
            "WorkDir": "/var/lib/docker/overlay2/fd3f446361f474e15ee388af2749ec9a24ee24da5e1d05642de1208e2e756c6a/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:81f823b9617547261c907396f63f770deaa554748ff739bedfa650e3bb74595a",
            "sha256:aa7bf5b94b92bc0951fa6a85f909392c3e1ed27b4c2fa82bc77fa84122a08416",
            "sha256:96a9284da7b47faab75998a33dc2e56874756555b92480d023585ff8a6d153fd",
            "sha256:a4bc3d2a20bafc5e6c89c5e2285579f620f118f81b5413c62edee3d2380bdaa2",
            "sha256:f7d704e9049824a8bb8860609b030e2cfd2c380484325cda609bb4d578d0db3a",
            "sha256:94a4594f152ef76e5a2917c8464b4994441699f2c0e43377177bd45078ea32b8",
            "sha256:34fd9df8de6f40ec0ef0f7fc2da9186b9694d96321608a79e7d7b5594a4a68c8",
            "sha256:cd010a6247c7c2f24345b7796d99372ac87b79ccca1468dfd84eca16af0f8622"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-31T11:25:18.596733+08:00"
    }
}

更多版本

ghcr.io/toeverything/affine-graphql:stable

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

ghcr.io/toeverything/affine-front:canary

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

ghcr.io/toeverything/affine-graphql:canary

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

ghcr.io/toeverything/affine-front:stable

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

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

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

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

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

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

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

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

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

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

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

ghcr.io/toeverything/affine:0.23.0

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

ghcr.io/toeverything/affine:0.23.1

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

ghcr.io/toeverything/affine:0.23.2

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

ghcr.io/toeverything/affine:0.24.0

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

ghcr.io/toeverything/affine:0.24.1

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

ghcr.io/toeverything/affine:0.25.1

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

ghcr.io/toeverything/affine:stable

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

ghcr.io/toeverything/affine:0.25.4

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

ghcr.io/toeverything/affine:0.25.5

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

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

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

ghcr.io/toeverything/affine:0.25.6

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

ghcr.io/toeverything/affine:0.25.7

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

ghcr.io/toeverything/affine:0.26.0

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

ghcr.io/toeverything/affine:0.26.2

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

ghcr.io/toeverything/affine:0.26.3

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

ghcr.io/toeverything/affine:0.26.7

linux/amd64 ghcr.io788.38MB2026-06-27 19:23
96

ghcr.io/toeverything/affine:0.27.3

linux/amd64 ghcr.io659.99MB2026-07-31 11:25
16
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×