docker.io/linuxserver/smokeping:latest linux/amd64

docker.io/linuxserver/smokeping:latest - 国内下载镜像源 浏览次数:8 安全受验证的发布者-linuxserver

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

源镜像 docker.io/linuxserver/smokeping:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest
镜像ID sha256:cb7501ec457dbed4d7cf8ed23043754ea0003f6ab2283637c8306b6541eb3b1c
镜像TAG latest
大小 222.09MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /init
工作目录 /
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2025-10-14T20:49:50.393962539Z
同步时间 2025-10-20 23:10
更新时间 2025-10-21 01:41
开放端口
80/tcp
目录挂载
/config /data
环境变量
PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy LSIO_FIRST_PARTY=true
镜像标签
Linuxserver.io version:- 2.9.0-r0-ls153 Build-date:- 2025-10-14T20:42:19+00:00: build_version notdriz: maintainer linuxserver.io: org.opencontainers.image.authors 2025-10-14T20:42:19+00:00: org.opencontainers.image.created [Smokeping](https://oss.oetiker.ch/smokeping/) keeps track of your network latency. For a full example of what this application is capable of visit [UCDavis](http://smokeping.ucdavis.edu/cgi-bin/smokeping.fcgi).: org.opencontainers.image.description https://docs.linuxserver.io/images/docker-smokeping: org.opencontainers.image.documentation GPL-3.0-only: org.opencontainers.image.licenses fd6d775fdb11307e370d7adbcf64382f0dd87464: org.opencontainers.image.ref.name fd6d775fdb11307e370d7adbcf64382f0dd87464: org.opencontainers.image.revision https://github.com/linuxserver/docker-smokeping: org.opencontainers.image.source Smokeping: org.opencontainers.image.title https://github.com/linuxserver/docker-smokeping/packages: org.opencontainers.image.url linuxserver.io: org.opencontainers.image.vendor 2.9.0-r0-ls153: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest  docker.io/linuxserver/smokeping:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest  docker.io/linuxserver/smokeping:latest

Shell快速替换命令

sed -i 's#linuxserver/smokeping:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest  docker.io/linuxserver/smokeping:latest'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest  docker.io/linuxserver/smokeping:latest'

镜像构建历史


# 2025-10-15 04:49:50  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/config /data]
                        
# 2025-10-15 04:49:50  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2025-10-15 04:49:50  41.35KB 复制新文件或目录到容器中
COPY root/ / # buildkit
                        
# 2025-10-15 04:49:50  194.34MB 执行命令并创建新的镜像层
RUN |3 BUILD_DATE=2025-10-14T20:42:19+00:00 VERSION=2.9.0-r0-ls153 SMOKEPING_VERSION=2.9.0-r0 /bin/sh -c echo "**** install packages ****" &&   if [ -z ${SMOKEPING_VERSION+x} ]; then     SMOKEPING_VERSION=$(curl -sL "http://dl-cdn.alpinelinux.org/alpine/v3.22/main/x86_64/APKINDEX.tar.gz" | tar -xz -C /tmp     && awk '/^P:smokeping$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://');   fi &&   apk add --no-cache --virtual=build-dependencies     build-base     perl-app-cpanminus     perl-dev &&   apk add --no-cache     apache2     apache2-ctl     apache2-utils     apache-mod-fcgid     bc     bind-tools     font-noto-cjk     irtt     openssh-client     perl-authen-radius     perl-io-socket-inet6     perl-json-maybexs     perl-lwp-protocol-https     perl-path-tiny     smokeping==${SMOKEPING_VERSION}     ssmtp     sudo     tcptraceroute &&   echo "**** Build perl TacacsPlus module ****" &&   cpanm Authen::TacacsPlus &&   echo "**** Build perl InfluxDB modules ****" &&   cpanm InfluxDB::HTTP &&   cpanm Method::Signatures --force &&   cpanm Object::Result &&   cpanm InfluxDB::LineProtocol &&   echo "**** give setuid access to traceroute & tcptraceroute ****" &&   chmod a+s /usr/bin/traceroute &&   chmod a+s /usr/bin/tcptraceroute &&   echo "**** fix path to cropper.js ****" &&   sed -i 's#src="/cropper/#/src="cropper/#' /etc/smokeping/basepage.html &&   printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version &&   echo "**** Cleanup ****" &&   apk del --purge     build-dependencies &&   rm -rf     /tmp/*     /root/.cpanm     /etc/apache2/httpd.conf # buildkit
                        
# 2025-10-15 04:49:50  0.00B 添加元数据标签
LABEL maintainer=notdriz
                        
# 2025-10-15 04:49:50  0.00B 添加元数据标签
LABEL build_version=Linuxserver.io version:- 2.9.0-r0-ls153 Build-date:- 2025-10-14T20:42:19+00:00
                        
# 2025-10-15 04:49:50  0.00B 定义构建参数
ARG SMOKEPING_VERSION=2.9.0-r0
                        
# 2025-10-15 04:49:50  0.00B 定义构建参数
ARG VERSION=2.9.0-r0-ls153
                        
# 2025-10-15 04:49:50  0.00B 定义构建参数
ARG BUILD_DATE=2025-10-14T20:42:19+00:00
                        
# 2025-10-15 04:49:50  0.00B 设置环境变量 LSIO_FIRST_PARTY
ENV LSIO_FIRST_PARTY=true
                        
# 2025-10-11 21:35:15  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2025-10-11 21:35:15  9.41KB 复制新文件或目录到容器中
COPY root/ / # buildkit
                        
# 2025-10-11 21:35:15  14.04MB 执行命令并创建新的镜像层
RUN |6 BUILD_DATE=2025-10-11T13:33:38+00:00 VERSION=68219374-ls13 MODS_VERSION=v3 PKG_INST_VERSION=v1 LSIOWN_VERSION=v1 WITHCONTENV_VERSION=v1 /bin/sh -c echo "**** install runtime packages ****" &&   apk add --no-cache     alpine-release     bash     ca-certificates     catatonit     coreutils     curl     findutils     jq     netcat-openbsd     procps-ng     shadow     tzdata &&   echo "**** create abc user and make our folders ****" &&   groupmod -g 1000 users &&   useradd -u 911 -U -d /config -s /bin/false abc &&   usermod -G users abc &&   mkdir -p     /app     /config     /defaults     /lsiopy &&   echo "**** cleanup ****" &&   rm -rf     /tmp/* # buildkit
                        
# 2025-10-11 21:35:14  0.00B 设置环境变量 PS1 HOME TERM S6_CMD_WAIT_FOR_SERVICES_MAXTIME S6_VERBOSITY S6_STAGE2_HOOK VIRTUAL_ENV PATH
ENV PS1=$(whoami)@$(hostname):$(pwd)\$  HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0 S6_VERBOSITY=1 S6_STAGE2_HOOK=/docker-mods VIRTUAL_ENV=/lsiopy PATH=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
                        
# 2025-10-11 21:35:14  478.00B 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/with-contenv.v1 /usr/bin/with-contenv # buildkit
                        
# 2025-10-11 21:35:14  945.00B 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/lsiown.v1 /usr/bin/lsiown # buildkit
                        
# 2025-10-11 21:35:14  4.18KB 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/package-install.v1 /etc/s6-overlay/s6-rc.d/init-mods-package-install/run # buildkit
                        
# 2025-10-11 21:35:14  31.19KB 复制文件或目录到容器中
ADD --chmod=755 https://raw.githubusercontent.com/linuxserver/docker-mods/mod-scripts/docker-mods.v3 /docker-mods # buildkit
                        
# 2025-10-11 21:35:14  0.00B 添加元数据标签
LABEL maintainer=TheLamer
                        
# 2025-10-11 21:35:14  0.00B 添加元数据标签
LABEL build_version=Linuxserver.io version:- 68219374-ls13 Build-date:- 2025-10-11T13:33:38+00:00
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG WITHCONTENV_VERSION=v1
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG LSIOWN_VERSION=v1
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG PKG_INST_VERSION=v1
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG MODS_VERSION=v3
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG VERSION=68219374-ls13
                        
# 2025-10-11 21:35:14  0.00B 定义构建参数
ARG BUILD_DATE=2025-10-11T13:33:38+00:00
                        
# 2025-10-11 21:35:14  13.62MB 复制新文件或目录到容器中
COPY /root-out/ / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:cb7501ec457dbed4d7cf8ed23043754ea0003f6ab2283637c8306b6541eb3b1c",
    "RepoTags": [
        "linuxserver/smokeping:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping:latest"
    ],
    "RepoDigests": [
        "linuxserver/smokeping@sha256:8871f37c6284bb1917e5f9b7735cb0c70c61934c2a70c3eecd0d4b9a7e8a78d0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/linuxserver/smokeping@sha256:f9f19103b333b9d0cd20220a0000f55cdb8f62287da1e43ffa284868f82ce2ae"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-10-14T20:49:50.393962539Z",
    "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=/lsiopy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PS1=$(whoami)@$(hostname):$(pwd)\\$ ",
            "HOME=/root",
            "TERM=xterm",
            "S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0",
            "S6_VERBOSITY=1",
            "S6_STAGE2_HOOK=/docker-mods",
            "VIRTUAL_ENV=/lsiopy",
            "LSIO_FIRST_PARTY=true"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": {
            "/config": {},
            "/data": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "/init"
        ],
        "OnBuild": null,
        "Labels": {
            "build_version": "Linuxserver.io version:- 2.9.0-r0-ls153 Build-date:- 2025-10-14T20:42:19+00:00",
            "maintainer": "notdriz",
            "org.opencontainers.image.authors": "linuxserver.io",
            "org.opencontainers.image.created": "2025-10-14T20:42:19+00:00",
            "org.opencontainers.image.description": "[Smokeping](https://oss.oetiker.ch/smokeping/) keeps track of your network latency. For a full example of what this application is capable of visit [UCDavis](http://smokeping.ucdavis.edu/cgi-bin/smokeping.fcgi).",
            "org.opencontainers.image.documentation": "https://docs.linuxserver.io/images/docker-smokeping",
            "org.opencontainers.image.licenses": "GPL-3.0-only",
            "org.opencontainers.image.ref.name": "fd6d775fdb11307e370d7adbcf64382f0dd87464",
            "org.opencontainers.image.revision": "fd6d775fdb11307e370d7adbcf64382f0dd87464",
            "org.opencontainers.image.source": "https://github.com/linuxserver/docker-smokeping",
            "org.opencontainers.image.title": "Smokeping",
            "org.opencontainers.image.url": "https://github.com/linuxserver/docker-smokeping/packages",
            "org.opencontainers.image.vendor": "linuxserver.io",
            "org.opencontainers.image.version": "2.9.0-r0-ls153"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 222090491,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/987e873d0c99503f1113d8e8e4f53bdb2f268004e6149d40663ad9da23ff9b82/diff:/var/lib/docker/overlay2/183491a4cd28fb9e58f0a5e19bd376acd82e256d29d657ad76f7ea02d009b197/diff:/var/lib/docker/overlay2/45fd4ef53409d87dacc777ce3e4bc32b789baec14f7c9552f5ffa3a8ba820b0c/diff:/var/lib/docker/overlay2/0f25551ada9da7e1a4740e077eaea0970590e85851a87448df1a668fda5c3425/diff:/var/lib/docker/overlay2/201ef67bd561a592252fadc245830738f220be65f825d0916b4a61030262b5e1/diff:/var/lib/docker/overlay2/e6d12bec0c08071f20cabfcecc58cb323f9d5bfbaf3138cca48aa99bb338d3b7/diff:/var/lib/docker/overlay2/d97e366c0d9f8b00fe3f956daf2dd24b3ab0bdfa223cdb65beb5830ffdd30102/diff:/var/lib/docker/overlay2/1cf809f370e87f4cbcad65370da61c58b905c72aa15822643e026e2ca9c5740f/diff",
            "MergedDir": "/var/lib/docker/overlay2/19fd1bb99ac7366ba6a808326575f047511717e6bc810be081a5eda345459dfe/merged",
            "UpperDir": "/var/lib/docker/overlay2/19fd1bb99ac7366ba6a808326575f047511717e6bc810be081a5eda345459dfe/diff",
            "WorkDir": "/var/lib/docker/overlay2/19fd1bb99ac7366ba6a808326575f047511717e6bc810be081a5eda345459dfe/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:037f2052b5c65951afbc913afb0d4efb4c1e80f14390f8e35193752bf085274b",
            "sha256:4237b4abe0c583f84633de1da55c1e716dbf60660634932965955c149a90929c",
            "sha256:a30ba73e7f555f05a32b4e844a8e26ad8cc2194dd9d00a71badbaf3c6defc113",
            "sha256:e79036d36ed0eb83112f35420a5422d4318bc3fa71ed48fd8d382e2acc43ea33",
            "sha256:d5042200317a979fa1b78cc48b624ffbb06eb3b4d53beb585dfc3b789953eab1",
            "sha256:ce190d71a00d37a685e962c0177128f8f00c6668752a392fd5e5c05f64bf831f",
            "sha256:8e94fbc09f92379666f6843dc5cc67beb46c8be49efddb1d1bf409d435cb2c55",
            "sha256:54c8f07ecf07028d774743e8a80497900649d2d5623d5a4c869f9c583c88e8a8",
            "sha256:f89d8b42b84d2f27a2e91e06f4fc8d68fa8e57f066e74402fba61128ef124ebc"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-20T23:09:51.43509954+08:00"
    }
}

更多版本

docker.io/linuxserver/smokeping:latest

linux/amd64 docker.io222.09MB2025-10-20 23:10
7