logo
docker.io/rancher/mirrored-library-traefik:3.7.8
linux/amd64 docker.io 已验证 · Rancher
根据 Docker Hub 上的信息,这个容器镜像的描述信息是:

traefik是一个reverse proxy和API Gateway解决方案

(无样式信息)
9
浏览次数
192.23MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8
源镜像
docker.io/rancher/mirrored-library-traefik:3.7.8
镜像ID
sha256:7a652b1846f788b214920ef659ab8c548e56d843decb7a18da737ace32f454de
镜像 TAG
3.7.8
镜像大小
192.23MB
平台架构
linux/amd64
镜像源
docker.io
CMD
traefik
启动入口
/entrypoint.sh
工作目录
/
OS/平台
linux/amd64
镜像创建
2026-07-15T17:38:14.034575385Z
同步时间
2026-08-08 15:53
浏览量
9 次
贡献者
🔌 开放端口 1
80/tcp
⚙️ 环境变量 1
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
🏷️ 镜像标签 7
KeyValue
A modern reverse-proxy org.opencontainers.image.description
https://docs.traefik.io org.opencontainers.image.documentation
https://github.com/traefik/traefik org.opencontainers.image.source
Traefik org.opencontainers.image.title
https://traefik.io org.opencontainers.image.url
Traefik Labs org.opencontainers.image.vendor
v3.7.8 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.24.1 Trivy 2026-08-08 15:53 查看完整报告
1
低危 LOW
1
中危 MEDIUM
4
高危 HIGH
0
严重 CRITICAL
受影响目标 (2)
docker.io/rancher/mirrored-library-traefik:3.7.8 (alpine 3.24.1) alpine usr/local/bin/traefik gobinary

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8  docker.io/rancher/mirrored-library-traefik:3.7.8

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8  docker.io/rancher/mirrored-library-traefik:3.7.8

Shell快速替换命令

sed -i 's#rancher/mirrored-library-traefik:3.7.8#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8  docker.io/rancher/mirrored-library-traefik:3.7.8'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8  docker.io/rancher/mirrored-library-traefik:3.7.8'

镜像构建历史


# 2026-07-16 01:38:14  0.00B 添加元数据标签
LABEL org.opencontainers.image.vendor=Traefik Labs org.opencontainers.image.url=https://traefik.io org.opencontainers.image.source=https://github.com/traefik/traefik org.opencontainers.image.title=Traefik org.opencontainers.image.description=A modern reverse-proxy org.opencontainers.image.version=v3.7.8 org.opencontainers.image.documentation=https://docs.traefik.io
                        
# 2026-07-16 01:38:14  0.00B 设置默认要执行的命令
CMD ["traefik"]
                        
# 2026-07-16 01:38:14  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/entrypoint.sh"]
                        
# 2026-07-16 01:38:14  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-07-16 01:38:14  419.00B 复制新文件或目录到容器中
COPY entrypoint.sh / # buildkit
                        
# 2026-07-16 01:38:13  182.91MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		armhf) arch='armv6' ;;         armv7) arch='armv7' ;; 		aarch64) arch='arm64' ;; 		x86_64) arch='amd64' ;; 		riscv64) arch='riscv64' ;; 		s390x) arch='s390x' ;; 		ppc64le) arch='ppc64le' ;; 		*) echo >&2 "error: unsupported architecture: $apkArch"; exit 1 ;; 	esac; 	wget --quiet -O /tmp/traefik.tar.gz "https://github.com/traefik/traefik/releases/download/v3.7.8/traefik_v3.7.8_linux_$arch.tar.gz"; 	tar xzvf /tmp/traefik.tar.gz -C /usr/local/bin traefik; 	rm -f /tmp/traefik.tar.gz; 	chmod +x /usr/local/bin/traefik # buildkit
                        
# 2026-07-16 01:38:11  902.48KB 执行命令并创建新的镜像层
RUN /bin/sh -c apk --no-cache add ca-certificates tzdata # buildkit
                        
# 2026-06-16 08:01:29  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:01:29  8.42MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:7a652b1846f788b214920ef659ab8c548e56d843decb7a18da737ace32f454de",
    "RepoTags": [
        "rancher/mirrored-library-traefik:3.7.8",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.7.8"
    ],
    "RepoDigests": [
        "rancher/mirrored-library-traefik@sha256:4299bbed850421258fc5448c2e0e6ad350981d4d335a68de11b92448aedbefe5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik@sha256:ecab2e42634cd1e7fa4aa643867de716bca4c8e0726dc698712661a8b7581159"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-15T17:38:14.034575385Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
        ],
        "Cmd": [
            "traefik"
        ],
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.description": "A modern reverse-proxy",
            "org.opencontainers.image.documentation": "https://docs.traefik.io",
            "org.opencontainers.image.source": "https://github.com/traefik/traefik",
            "org.opencontainers.image.title": "Traefik",
            "org.opencontainers.image.url": "https://traefik.io",
            "org.opencontainers.image.vendor": "Traefik Labs",
            "org.opencontainers.image.version": "v3.7.8"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 192225516,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/9435b9e397f18b4f9ab7b02eaf1701136ec2c47fc5f1735dcfdf042ba07e74a3/diff:/var/lib/docker/overlay2/89b1dbf13d144f280a1c6f5e0f93d77121b971d5354725fd40a58a63e0aeea70/diff:/var/lib/docker/overlay2/d51bd9f442769618005c9be653661c047116bf4ebe32b04db2ad4ca7bebb792d/diff",
            "MergedDir": "/var/lib/docker/overlay2/7f2a6ca7e6bd8c8a52043c656e3657c1bfe65f8d102907464183581cd821614c/merged",
            "UpperDir": "/var/lib/docker/overlay2/7f2a6ca7e6bd8c8a52043c656e3657c1bfe65f8d102907464183581cd821614c/diff",
            "WorkDir": "/var/lib/docker/overlay2/7f2a6ca7e6bd8c8a52043c656e3657c1bfe65f8d102907464183581cd821614c/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:34884abbe92863fce933ed7c39c0e045631af0ed86d5cc0dfbdf9fdca426ce3c",
            "sha256:eab7b2d049c555cd1d3c2b6ec6c2ab4c7e505e7b525e34f6b98e9fafdaf550da",
            "sha256:903fa47512b09b5f3beaec50798d9de61fb0821bef4a30ca0453c79d064b6186",
            "sha256:61d1be1c239a9b40166fda13ad704a91664b93ae1be34125ef596da3175a48be"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-08-08T15:53:02.753790659+08:00"
    }
}

更多版本

docker.io/rancher/mirrored-library-traefik:2.10.7

linux/amd64 docker.io152.58MB2024-06-27 17:16
996

docker.io/rancher/mirrored-library-traefik:2.10.7

linux/arm64 docker.io148.87MB2024-07-11 16:22
639

docker.io/rancher/mirrored-library-traefik:2.11.8

linux/amd64 docker.io169.74MB2024-10-11 22:50
575

docker.io/rancher/mirrored-library-traefik:2.11.10

linux/amd64 docker.io167.79MB2024-11-22 10:23
486

docker.io/rancher/mirrored-library-traefik:2.11.10

linux/arm64 docker.io164.73MB2025-01-17 09:48
405

docker.io/rancher/mirrored-library-traefik:2.10.5

linux/arm64 docker.io147.63MB2025-02-18 09:16
498

docker.io/rancher/mirrored-library-traefik:3.3.6

linux/arm64 docker.io214.94MB2025-05-09 10:28
466

docker.io/rancher/mirrored-library-traefik:2.11.24

linux/arm64 docker.io206.22MB2025-05-16 23:09
305

docker.io/rancher/mirrored-library-traefik:3.3.6

linux/amd64 docker.io223.89MB2025-05-25 22:36
521

docker.io/rancher/mirrored-library-traefik:2.11.24

linux/amd64 docker.io215.04MB2025-07-15 18:24
370

docker.io/rancher/mirrored-library-traefik:2.6.2

linux/amd64 docker.io102.11MB2025-08-10 16:11
297

docker.io/rancher/mirrored-library-traefik:3.3.2

linux/amd64 docker.io190.28MB2025-11-09 12:39
239

docker.io/rancher/mirrored-library-traefik:3.5.1

linux/amd64 docker.io177.61MB2025-12-22 10:55
369

docker.io/rancher/mirrored-library-traefik:2.9.10

linux/amd64 docker.io137.84MB2026-01-29 10:36
266

docker.io/rancher/mirrored-library-traefik:3.6.9

linux/amd64 docker.io185.83MB2026-03-12 14:15
724

docker.io/rancher/mirrored-library-traefik:3.6.10

linux/amd64 docker.io186.13MB2026-04-08 19:08
219

docker.io/rancher/mirrored-library-traefik:3.6.13

linux/amd64 docker.io186.23MB2026-05-11 17:42
155

docker.io/rancher/mirrored-library-traefik:3.6.7

linux/amd64 docker.io185.76MB2026-05-25 16:15
120

docker.io/rancher/mirrored-library-traefik:3.7.8

linux/amd64 docker.io192.23MB2026-08-08 15:53
8
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×