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

docker.io/rancher/mirrored-library-traefik:3.3.2 - 国内下载镜像源 浏览次数:13 安全受验证的发布者-Rancher
根据 Docker Hub 上的信息,这个容器镜像的描述信息是:

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

(无样式信息)
源镜像 docker.io/rancher/mirrored-library-traefik:3.3.2
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.3.2
镜像ID sha256:88eafdd76c933a76798a389d994b4fdd6b5edb89d702aae10c4350ecaa3febb9
镜像TAG 3.3.2
大小 190.28MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD traefik
启动入口 /entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 13 次
贡献者
镜像创建 2025-01-14T16:01:35Z
同步时间 2025-11-09 12:39
更新时间 2025-11-10 02:40
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
镜像标签
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.3.2: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#rancher/mirrored-library-traefik:3.3.2#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.3.2#' 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.3.2 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.3.2  docker.io/rancher/mirrored-library-traefik:3.3.2'

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.3.2 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.3.2  docker.io/rancher/mirrored-library-traefik:3.3.2'

镜像构建历史


# 2025-01-15 00:01:35  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.3.2 org.opencontainers.image.documentation=https://docs.traefik.io
                        
# 2025-01-15 00:01:35  0.00B 设置默认要执行的命令
CMD ["traefik"]
                        
# 2025-01-15 00:01:35  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/entrypoint.sh"]
                        
# 2025-01-15 00:01:35  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-01-15 00:01:35  419.00B 复制新文件或目录到容器中
COPY entrypoint.sh / # buildkit
                        
# 2025-01-15 00:01:35  181.44MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		armhf) arch='armv6' ;; 		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.3.2/traefik_v3.3.2_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
                        
# 2025-01-15 00:01:35  1.01MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk --no-cache add ca-certificates tzdata # buildkit
                        
# 2025-01-08 20:07:30  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-01-08 20:07:30  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:88eafdd76c933a76798a389d994b4fdd6b5edb89d702aae10c4350ecaa3febb9",
    "RepoTags": [
        "rancher/mirrored-library-traefik:3.3.2",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik:3.3.2"
    ],
    "RepoDigests": [
        "rancher/mirrored-library-traefik@sha256:a03ee2f858f77975fa943f6797da5446b7ac9a83beef6bbdae2afd8feaf67b76",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/rancher/mirrored-library-traefik@sha256:74083bfaba2c8273312cf4b9a01fecca7c76d5566ae6a2884a9a45d22304b340"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-01-14T16:01:35Z",
    "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.3.2"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 190284802,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ba290354f233a96959f6ffae8660a02279c2c6694028ad350f4533d5573c1d6e/diff:/var/lib/docker/overlay2/41898881f32aa02b8b009c2adbc85957f67d476e5dde954601501c0ef6edd9e6/diff:/var/lib/docker/overlay2/d20d579acee6b92a841ecc27f4d08dddd63e6a78b9aab3e87eac393e91dd0045/diff",
            "MergedDir": "/var/lib/docker/overlay2/c195be62d8f2f416ef8bb92206d5799717eb3773e2d1beac8b999c2822d24fe5/merged",
            "UpperDir": "/var/lib/docker/overlay2/c195be62d8f2f416ef8bb92206d5799717eb3773e2d1beac8b999c2822d24fe5/diff",
            "WorkDir": "/var/lib/docker/overlay2/c195be62d8f2f416ef8bb92206d5799717eb3773e2d1beac8b999c2822d24fe5/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a0904247e36a7726c03c71ee48f3e64462021c88dafeb13f37fdaf613b27f11c",
            "sha256:dc51a60d68f4f27639565798d886e82bee43fa3fe0d3a6e1d82e3137d835147a",
            "sha256:3092975c103cc25f4dc2e3ec5fd02523239c0c051c2effdaa8fdd7bb28c27f2b",
            "sha256:4bc34b8e83ee7007aeaaeee2c80e61c6c938e55ef42c439b6566f64c2a3cb62e"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-09T12:39:12.792281417+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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