docker.io/maxxing/compiler-dev:0.0.9 linux/amd64

docker.io/maxxing/compiler-dev:0.0.9 - 国内下载镜像源 浏览次数:10

该镜像为编译器开发提供所需的工具和环境,包含常用的编译工具链(如GCC、Clang)、调试工具(如GDB)、构建系统(如Make、CMake)等,方便开发者进行编译器相关的开发、测试与调试工作。

源镜像 docker.io/maxxing/compiler-dev:0.0.9
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9
镜像ID sha256:bf3e9aec64681e1383c2ce7f62d688ca66a26e90c57c1f3f0e9f4a3b5db9cbf8
镜像TAG 0.0.9
大小 3.03GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash
启动入口
工作目录 /root
OS/平台 linux/amd64
浏览量 10 次
贡献者
镜像创建 2025-11-15T07:21:01.161954672Z
同步时间 2026-03-02 15:53
环境变量
PATH=/opt/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup CDE_LIBRARY_PATH=/opt/lib CDE_INCLUDE_PATH=/opt/include
镜像标签
ubuntu: org.opencontainers.image.ref.name 24.04: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9  docker.io/maxxing/compiler-dev:0.0.9

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9  docker.io/maxxing/compiler-dev:0.0.9

Shell快速替换命令

sed -i 's#maxxing/compiler-dev:0.0.9#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9  docker.io/maxxing/compiler-dev:0.0.9'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9  docker.io/maxxing/compiler-dev:0.0.9'

镜像构建历史


# 2025-11-15 15:21:01  0.00B 设置工作目录为/root
WORKDIR /root
                        
# 2025-11-15 15:21:01  60.80MB 执行命令并创建新的镜像层
RUN |9 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin TEST_CASES_REPO_URL=https://github.com/pku-minic/compiler-dev-test-cases.git /bin/sh -c git clone --single-branch --depth 1 ${TEST_CASES_REPO_URL} cd-test-cases &&   make LIB_DIR=${LIB_INSTALL_DIR}/native INSTALL_DIR=${BIN_INSTALL_DIR}/testcases        -C cd-test-cases install -j`nproc` &&   rm -rf cd-test-cases # buildkit
                        
# 2025-11-15 15:20:15  16.13KB 复制新文件或目录到容器中
COPY autotest . # buildkit
                        
# 2025-11-15 15:20:15  0.00B 设置工作目录为/opt/bin
WORKDIR /opt/bin
                        
# 2025-11-15 15:12:20  0.00B 定义构建参数
ARG TEST_CASES_REPO_URL=https://github.com/pku-minic/compiler-dev-test-cases.git
                        
# 2025-11-15 15:12:20  28.72KB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c git clone --single-branch --depth 1 ${SYSYRT_REPO_URL} sysyrt &&   make -C sysyrt libsysy &&   mkdir -p native && cp sysyrt/build/libsysy.a native &&   make NO_LIBC=1        ADD_CFLAGS="-target riscv32-unknown-linux-elf -march=rv32im -mabi=ilp32"        -C sysyrt clean libsysy &&   mkdir -p riscv32 && cp sysyrt/build/libsysy.a riscv32 &&   rm -rf sysyrt # buildkit
                        
# 2025-11-15 15:12:14  0.00B 设置工作目录为/opt/lib
WORKDIR /opt/lib
                        
# 2025-11-15 15:12:14  1.05MB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c mkdir kpc && tar xzf ${KOOPAC} -C kpc &&   cargo install --path kpc --root ${INSTALL_DIR} --no-track &&   rm -rf ${KOOPAC} kpc /root/.cargo/registry # buildkit
                        
# 2025-11-15 15:11:53  3.91KB 复制新文件或目录到容器中
COPY koopac.tar.gz . # buildkit
                        
# 2025-11-15 15:11:53  0.00B 设置工作目录为/opt
WORKDIR /opt
                        
# 2025-11-15 15:11:53  22.37MB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c git clone --single-branch --depth 1 ${KOOPA_REPO_URL} koopa &&   CARGO_PROFILE_RELEASE_PANIC=abort cargo build -r -p libkoopa --manifest-path koopa/Cargo.toml &&   mkdir -p native &&   cp koopa/target/release/libkoopa.a native &&   mkdir -p ${INC_INSTALL_DIR} &&   cp -R koopa/libkoopa/include/* ${INC_INSTALL_DIR}/. &&   rm -rf koopa /root/.cargo/registry # buildkit
                        
# 2025-11-15 15:11:29  0.00B 设置工作目录为/opt/lib
WORKDIR /opt/lib
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 PATH
ENV PATH=/opt/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 CDE_INCLUDE_PATH
ENV CDE_INCLUDE_PATH=/opt/include
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 CDE_LIBRARY_PATH
ENV CDE_LIBRARY_PATH=/opt/lib
                        
# 2025-11-15 15:11:29  0.00B 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c mkdir -p ${LIB_INSTALL_DIR} ${BIN_INSTALL_DIR} # buildkit
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 PATH
ENV PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 RUSTUP_DIST_SERVER
ENV RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup
                        
# 2025-11-15 15:11:29  0.00B 设置环境变量 RUSTUP_UPDATE_ROOT
ENV RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup
                        
# 2025-11-15 15:11:29  1.24GB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c wget -O - https://sh.rustup.rs | sh -s -- -y &&   mkdir -p ~/.cargo &&   cat > ~/.cargo/config.toml << EOF
[source.crates-io]
replace-with = 'mirror'
[source.mirror]
registry = "sparse+https://mirrors.tuna.tsinghua.edu.cn/crates.io-index/"
[registries.mirror]
index = "sparse+https://mirrors.tuna.tsinghua.edu.cn/crates.io-index/"
EOF # buildkit
                        
# 2025-11-15 15:10:53  13.55KB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c bash update-alternatives-clang.sh 21 100 &&   rm update-alternatives-clang.sh # buildkit
                        
# 2025-11-15 15:10:52  4.47KB 复制新文件或目录到容器中
COPY update-alternatives-clang.sh . # buildkit
                        
# 2025-11-15 15:10:52  0.00B 设置工作目录为/root
WORKDIR /root
                        
# 2025-11-15 15:10:52  1.57GB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c apt update && DEBIAN_FRONTEND="noninteractive" apt install -y   git flex bison python3   make cmake   qemu-user-static   clang-21 lldb-21 lld-21 # buildkit
                        
# 2025-11-15 15:06:48  60.31MB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c apt update &&   DEBIAN_FRONTEND="noninteractive" apt install -y wget &&   wget -qO- https://apt.llvm.org/llvm-snapshot.gpg.key > /etc/apt/trusted.gpg.d/llvm.asc &&   cat > /etc/apt/sources.list.d/llvm.sources << EOF
Types: deb
Architectures: amd64 arm64
Signed-By: /etc/apt/trusted.gpg.d/llvm.asc
URIs: http://apt.llvm.org/noble/
Suites: llvm-toolchain-noble-21
Components: main
EOF # buildkit
                        
# 2025-11-15 15:06:18  2.57KB 执行命令并创建新的镜像层
RUN |8 KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git KOOPAC=koopac.tar.gz SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git AUTOTEST=autotest INSTALL_DIR=/opt LIB_INSTALL_DIR=/opt/lib INC_INSTALL_DIR=/opt/include BIN_INSTALL_DIR=/opt/bin /bin/sh -c sed -i "s@http://.*archive.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list.d/ubuntu.sources &&   sed -i "s@http://.*security.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list.d/ubuntu.sources &&   sed -i "s@http://.*ports.ubuntu.com@http://mirrors.tuna.tsinghua.edu.cn@g" /etc/apt/sources.list.d/ubuntu.sources # buildkit
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG BIN_INSTALL_DIR=/opt/bin
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG INC_INSTALL_DIR=/opt/include
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG LIB_INSTALL_DIR=/opt/lib
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG INSTALL_DIR=/opt
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG AUTOTEST=autotest
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG SYSYRT_REPO_URL=https://github.com/pku-minic/sysy-runtime-lib.git
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG KOOPAC=koopac.tar.gz
                        
# 2025-11-15 15:06:18  0.00B 定义构建参数
ARG KOOPA_REPO_URL=https://github.com/pku-minic/koopa.git
                        
# 2025-10-17 03:23:03  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-10-17 03:23:03  78.12MB 
/bin/sh -c #(nop) ADD file:ddf1aa62235de6657123492b19d27d937c25668011b5ebf923a3f019200f8540 in / 
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:bf3e9aec64681e1383c2ce7f62d688ca66a26e90c57c1f3f0e9f4a3b5db9cbf8",
    "RepoTags": [
        "maxxing/compiler-dev:0.0.9",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev:0.0.9"
    ],
    "RepoDigests": [
        "maxxing/compiler-dev@sha256:b3599b369bb88665dc468290a6f21c9e6627698c8e97b38e44065865ce7bd30a",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/maxxing/compiler-dev@sha256:3b072e0e8c744837a5a0f1c50a6070bf1a04e352639e5c4a4b4810b5a4ef0cfd"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-15T07:21:01.161954672Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/opt/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "RUSTUP_UPDATE_ROOT=https://mirrors.tuna.tsinghua.edu.cn/rustup/rustup",
            "RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup",
            "CDE_LIBRARY_PATH=/opt/lib",
            "CDE_INCLUDE_PATH=/opt/include"
        ],
        "Cmd": [
            "/bin/bash"
        ],
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/root",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.version": "24.04"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 3031118344,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/95e831714f5a8eaab94c3611c9efca68ce129e52fe85ed4176ca6684fd056f4e/diff:/var/lib/docker/overlay2/e4f15b0f8284614397b95f64250e63bb2975a33b19080518a0c57e11c1bd8a50/diff:/var/lib/docker/overlay2/77fe43eab4f32c8df28738ab058ea0ebf753f8e04b865ebdf23760e50bdb4d9a/diff:/var/lib/docker/overlay2/40d7fa24e5069288c79e8edc1fecbb53abfa51d3f19cbc3bdf3d9572c745c410/diff:/var/lib/docker/overlay2/a9e69aa04bc1cdc16c23deba1441cbd56e561b56c6365c175a7ef954bd3af2ad/diff:/var/lib/docker/overlay2/3088ae2ee6500f521cee17f092540f3b035846a7920e51d08c0e4a0e4b4c1927/diff:/var/lib/docker/overlay2/8a2033790b00e8811555ab2a5a6b29dc5ff02a159ddbcb5d8e82d3a0ff720428/diff:/var/lib/docker/overlay2/7d58c08a588b5f9e18c02120fbf06e349f5afc3ed665e9eb6cc100ac2c81890b/diff:/var/lib/docker/overlay2/ae02f06ab40b4999e907f4a3297f14019ab165bbc38cc1fd8dd7ecd7a62d056c/diff:/var/lib/docker/overlay2/89fec4178b3e5c1ddf90f446b5eef820f78aaf7a6fabe3936cc53348af1896ce/diff:/var/lib/docker/overlay2/44e5dbbe3dcc7184d85100c038c08c5d7f711e5a2b695c8bff6aa65902324158/diff:/var/lib/docker/overlay2/05cf840d57487bd0f87f2eeaee6a58ca87758efca14adabc5123a92ad25fbec9/diff:/var/lib/docker/overlay2/c40e0765d7a2fb21454fe1b5e5dd802c3b9173da674550a0a18fecad57334cc1/diff:/var/lib/docker/overlay2/ae8fbb66cf4701742ad69181938a829f4d809dbdb15d9d36383fc3546590af3f/diff:/var/lib/docker/overlay2/d68618dcafcc846fa77c61bf74efd002db1def3cbb8a75d1789c9e0163ca8495/diff:/var/lib/docker/overlay2/2893b5342e4a62c94323fd7a3afa11f4e6409d55e92ae5894991c2009f9b6bb9/diff:/var/lib/docker/overlay2/027ab27926a619e12d298cde34a2b55010b5af8109e34c418c282c32562e6bb9/diff:/var/lib/docker/overlay2/144c571e778baed22a9bfcc82599f1813844c7405e9435e80877d266c0009305/diff:/var/lib/docker/overlay2/eb70712178461cb65c5a956187c966c31d60ac41eacf62af98ead2c9415d1d0a/diff",
            "MergedDir": "/var/lib/docker/overlay2/248a1bd8e8d8ea0568a17a1811e86427db443bd8cb81405dae6c61bd08be4e08/merged",
            "UpperDir": "/var/lib/docker/overlay2/248a1bd8e8d8ea0568a17a1811e86427db443bd8cb81405dae6c61bd08be4e08/diff",
            "WorkDir": "/var/lib/docker/overlay2/248a1bd8e8d8ea0568a17a1811e86427db443bd8cb81405dae6c61bd08be4e08/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e8bce0aabd687e9ee90e0bada33884f40b277196f72aac9934357472863a80ae",
            "sha256:97cdacf923aaa28d1ae9b63b4d2d612b4a370f93c4843bdd0e71324d6d09bc92",
            "sha256:2d6761260a190f7b255d8bd6b16e063065f79f3aa994b98a25dd5f80c530b80f",
            "sha256:7b5c00118e49360b01f1846843777bc9c982eabeefe4f2f0b9a458b37db4d40d",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:e73b3599fc878e604ecc580bf3154831f713f7cf0e8728b3eb6afed8ba4922c8",
            "sha256:9641c4fda29c31e58d8f70ccb11cdf29949bac3dbda1a392257e826ce15bcae6",
            "sha256:a016e688aefb41085f1d60dffee81c96e50e6030ba9c42559da61aa760ee9135",
            "sha256:6ea95e6cfdb3e76ded9d4846ba94637204b5feba6c08df299aa24a6d69df9f8e",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:430d64cff5399e5811ffce6431c41d368d77706f62a17526e8428ff52f4dc454",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:26e09b6ea912f39cd3e41c45cbc3c7cd37a91f6ad4f14f7d61827268870eded3",
            "sha256:6f00226c993629814381d1a219c947a332a43172e8fecf98809aca5c6afb560f",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:a268b86f4c04ca500ab86cac19eb84b80ab004fe09b5ff0b40abf96fea63f0f5",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:cb91c4990cc313c4504cc2057b4aec1b9c4cb84c52b23e8553b8724a2043a6f9",
            "sha256:29291872375f511cc6c74700beab6d5f911f950d0e61f671c1f02c2078ca5501",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-02T15:51:21.567345204+08:00"
    }
}

更多版本

docker.io/maxxing/compiler-dev:0.0.9

linux/amd64 docker.io3.03GB2026-03-02 15:53
9