ghcr.io/eclipse-sumo/sumo:v1_26_0 linux/amd64

ghcr.io/eclipse-sumo/sumo:v1_26_0 - 国内下载镜像源 浏览次数:60

Eclipse SUMO(Simulation of Urban MObility)是一个开源的微观交通仿真工具,用于模拟城市交通流、道路网络、公共交通系统等多种交通场景。该Docker镜像提供了SUMO的完整运行环境,方便用户快速部署并使用SUMO进行交通仿真建模、分析及相关研究工作。

源镜像 ghcr.io/eclipse-sumo/sumo:v1_26_0
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0
镜像ID sha256:b816c499e4644a56ab444af9670faf2ae24b50bcc16daa7bfd93dd6114fc363e
镜像TAG v1_26_0
大小 4.48GB
镜像源 ghcr.io
CMD /bin/bash -c
启动入口
工作目录
OS/平台 linux/amd64
浏览量 60 次
贡献者
镜像创建 2026-01-28T19:57:55.70433189Z
同步时间 2026-05-14 16:33
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin SUMO_HOME=/usr/share/sumo
镜像标签
SUMO Developers <sumo-dev@eclipse.org>: org.opencontainers.image.authors 2026-01-28T19:07:32.570Z: org.opencontainers.image.created Eclipse SUMO is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation.: org.opencontainers.image.description https://sumo.dlr.de/docs/Developer/Docker.html: org.opencontainers.image.documentation EPL-2.0: org.opencontainers.image.licenses ubuntu: org.opencontainers.image.ref.name fa7df22d7f1c4ae245192ecc32410a49f1ffb2a3: org.opencontainers.image.revision https://github.com/eclipse-sumo/sumo: org.opencontainers.image.source sumo: org.opencontainers.image.title https://github.com/eclipse-sumo/sumo: org.opencontainers.image.url v1_26_0: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0  ghcr.io/eclipse-sumo/sumo:v1_26_0

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0  ghcr.io/eclipse-sumo/sumo:v1_26_0

Shell快速替换命令

sed -i 's#ghcr.io/eclipse-sumo/sumo:v1_26_0#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-01-29 03:57:55  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c"]
                        
# 2026-01-29 03:57:55  515.77MB 执行命令并创建新的镜像层
RUN |2 DEBIAN_FRONTEND=noninteractive ARROW_VERSION=2200 /bin/sh -c pip3 install --no-cache-dir -r /tmp/requirements.txt # buildkit
                        
# 2026-01-29 03:57:37  3.58GB 执行命令并创建新的镜像层
RUN |2 DEBIAN_FRONTEND=noninteractive ARROW_VERSION=2200 /bin/sh -c apt-get -qq update &&     apt-get -y install git ca-certificates lsb-release wget &&     wget https://packages.apache.org/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb &&     apt-get -y install ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb &&     apt-get -qq update &&     apt-get -qq -y install $(cat /tmp/build_req_deb.txt) $(cat /tmp/tools_req_deb.txt)                            libavformat58 libopenscenegraph161 libswscale5 libarrow$ARROW_VERSION libparquet$ARROW_VERSION &&     apt-get -qq clean autoclean &&     apt-get -qq -y autoremove &&     rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2026-01-29 03:54:29  269.00B 复制新文件或目录到容器中
COPY /opt/sumo/tools/requirements.txt /tmp/requirements.txt # buildkit
                        
# 2026-01-29 03:54:29  269.00B 复制新文件或目录到容器中
COPY /opt/sumo/build_config/tools_req_deb.txt /tmp/tools_req_deb.txt # buildkit
                        
# 2026-01-29 03:54:29  412.00B 复制新文件或目录到容器中
COPY /opt/sumo/build_config/build_req_deb.txt /tmp/build_req_deb.txt # buildkit
                        
# 2026-01-29 03:54:29  302.89MB 复制新文件或目录到容器中
COPY /install/usr /usr # buildkit
                        
# 2026-01-29 03:54:29  0.00B 定义构建参数
ARG ARROW_VERSION=2200
                        
# 2026-01-29 03:54:29  0.00B 定义构建参数
ARG DEBIAN_FRONTEND=noninteractive
                        
# 2026-01-29 03:54:29  0.00B 设置环境变量 SUMO_HOME
ENV SUMO_HOME=/usr/share/sumo
                        
# 2026-01-29 03:54:29  0.00B 添加元数据标签
LABEL org.opencontainers.image.authors=SUMO Developers <sumo-dev@eclipse.org> org.opencontainers.image.url=https://ghcr.io/eclipse-sumo/sumo org.opencontainers.image.source=https://github.com/eclipse-sumo/sumo/blob/main/build_config/docker/Dockerfile.ubuntu.git org.opencontainers.image.documentation=https://sumo.dlr.de/docs/Developer/Docker.html org.opencontainers.image.licenses=EPL-2.0 OR GPL-2.0-or-later
                        
# 2026-01-09 15:01:44  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2026-01-09 15:01:44  77.87MB 
/bin/sh -c #(nop) ADD file:b499000226bd9a7c562ffa8eeb86e2d170f2a563310db6c2d79562ab53e5cb6e in / 
                        
# 2026-01-09 15:01:41  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=22.04
                        
# 2026-01-09 15:01:41  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2026-01-09 15:01:41  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2026-01-09 15:01:41  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:b816c499e4644a56ab444af9670faf2ae24b50bcc16daa7bfd93dd6114fc363e",
    "RepoTags": [
        "ghcr.io/eclipse-sumo/sumo:v1_26_0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo:v1_26_0"
    ],
    "RepoDigests": [
        "ghcr.io/eclipse-sumo/sumo@sha256:51f23452ba082fd684cd07e4502386a968671b0031ca138078c1e2707cbb0e37",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/eclipse-sumo/sumo@sha256:51f23452ba082fd684cd07e4502386a968671b0031ca138078c1e2707cbb0e37"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-28T19:57:55.70433189Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "SUMO_HOME=/usr/share/sumo"
        ],
        "Cmd": [
            "/bin/bash",
            "-c"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.authors": "SUMO Developers \u003csumo-dev@eclipse.org\u003e",
            "org.opencontainers.image.created": "2026-01-28T19:07:32.570Z",
            "org.opencontainers.image.description": "Eclipse SUMO is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation.",
            "org.opencontainers.image.documentation": "https://sumo.dlr.de/docs/Developer/Docker.html",
            "org.opencontainers.image.licenses": "EPL-2.0",
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.revision": "fa7df22d7f1c4ae245192ecc32410a49f1ffb2a3",
            "org.opencontainers.image.source": "https://github.com/eclipse-sumo/sumo",
            "org.opencontainers.image.title": "sumo",
            "org.opencontainers.image.url": "https://github.com/eclipse-sumo/sumo",
            "org.opencontainers.image.version": "v1_26_0"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 4479764659,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/3719f228f9be702be2ee03ebc1d6312321800f9acbeacd1009eb60233e8c62d7/diff:/var/lib/docker/overlay2/47683fcfe94587bd40924f9c5db1174f5af9e0a9bbf8e12ca9bcb00c6a8d5e22/diff:/var/lib/docker/overlay2/b11383df34678b5ae257a5e1dfbbdd45fb79b2e1126d4f6fde10041a2428d11c/diff:/var/lib/docker/overlay2/bc131dd29212c69a6145b05c518bf5e528ba2a30693f215a7e9574296fdd3b7b/diff:/var/lib/docker/overlay2/9e2ddbc2d08ab391d5524af2e0d283905f599b2c1c8847a6c7d8ccaa34460b1a/diff:/var/lib/docker/overlay2/f2fe92a133c3ec68fa7bd5095d38e904cb8ccbbb634b69da11ccfbea5bc12ebf/diff",
            "MergedDir": "/var/lib/docker/overlay2/26d93d3f0a01a505196b255ba9b6b1600a360f610d78f761de8119be17cf656f/merged",
            "UpperDir": "/var/lib/docker/overlay2/26d93d3f0a01a505196b255ba9b6b1600a360f610d78f761de8119be17cf656f/diff",
            "WorkDir": "/var/lib/docker/overlay2/26d93d3f0a01a505196b255ba9b6b1600a360f610d78f761de8119be17cf656f/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:fbb9bbbaf4d2b027acd15252897d5043386eea7121e0e0433e697714bb14beac",
            "sha256:cb7ca4d22c8ca4f08197ec88585becec9464b9fae1c1e3b065333cb3b1fce512",
            "sha256:7bb391134e49f275a16ec0ef27d24a38ff56ffb5769891fcb404d6f3ea135620",
            "sha256:64b96313295f363e2af54c3617f343acbb8ac5ce4dab0d92b09b015b4e220435",
            "sha256:da45820f12ff447f48687c78496aab8a57dcf5edf926606992cd1367987fa3e9",
            "sha256:d59fb05a89ca9b0c10d994b733a7c095899cf0ac9c853c117a836bc66c5869e0",
            "sha256:d5719171c323ecdd1e7b5d1c8f827663d043cb5a80946218a94d166d72de7115"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-05-14T16:29:31.815659531+08:00"
    }
}

更多版本

ghcr.io/eclipse-sumo/sumo:v1_26_0

linux/amd64 ghcr.io4.48GB2026-05-14 16:33
59