广告图片

docker.io/superng6/qbittorrentee:latest linux/arm64

docker.io/superng6/qbittorrentee:latest - 国内下载镜像源 浏览次数:11

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

温馨提示: 这是一个 linux/arm64 系统架构镜像

这是一个名为docker.io/superng6/qbittorrentee的Docker镜像。 根据名称推测,该镜像很可能包含了qBittorrent客户端的运行环境。 qBittorrent是一个轻量级、开源的BitTorrent客户端。

该镜像由用户superng6发布到Docker Hub。

源镜像 docker.io/superng6/qbittorrentee:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64
镜像ID sha256:88eaab3269b9d9b92c1d3e6b59f2aa2578af1aba133dc5cffd8a8f02c439cbe0
镜像TAG latest-linuxarm64
大小 112.53MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 /init
工作目录 /
OS/平台 linux/arm64
浏览量 11 次
贡献者
镜像创建 2025-11-15T21:38:05.449379808Z
同步时间 2026-04-02 22:51
开放端口
6881/tcp 6881/udp 8080/tcp
目录挂载
/config /downloads
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm TZ=Asia/Shanghai WEBUIPORT=8080 ENABLE_DOWNLOADS_PERM_FIX=true
镜像标签
NG6: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64  docker.io/superng6/qbittorrentee:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64  docker.io/superng6/qbittorrentee:latest

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-11-16 05:38:05  0.00B 声明容器运行时监听的端口
EXPOSE [6881/tcp 6881/udp 8080/tcp]
                        
# 2025-11-16 05:38:05  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/downloads /config]
                        
# 2025-11-16 05:38:05  43.16MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache python3     && rm -rf /var/cache/apk/*      && chmod a+x /usr/local/bin/qbittorrent-nox # buildkit
                        
# 2025-11-16 05:38:01  34.05MB 复制新文件或目录到容器中
COPY /qbittorrent/qbittorrent-nox /usr/local/bin/qbittorrent-nox # buildkit
                        
# 2025-11-16 05:37:56  159.38KB 复制新文件或目录到容器中
COPY root / # buildkit
                        
# 2025-11-16 05:37:56  0.00B 设置环境变量 TZ WEBUIPORT ENABLE_DOWNLOADS_PERM_FIX
ENV TZ=Asia/Shanghai WEBUIPORT=8080 ENABLE_DOWNLOADS_PERM_FIX=true
                        
# 2025-10-12 22:36:17  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/init"]
                        
# 2025-10-12 22:36:17  4.84KB 复制新文件或目录到容器中
COPY root/ / # buildkit
                        
# 2025-10-12 22:36:17  20.65MB 执行命令并创建新的镜像层
RUN /bin/sh -c echo "**** install build packages ****" &&  apk add --no-cache --virtual=build-dependencies 	patch 	tar &&  echo "**** install runtime packages ****" &&  apk add --no-cache 	bash 	curl 	wget 	ca-certificates 	coreutils 	procps 	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 &&  mv /usr/bin/with-contenv /usr/bin/with-contenvb &&  patch -u /etc/s6/init/init-stage2 -i /tmp/patch/etc/s6/init/init-stage2.patch &&  echo "**** cleanup ****" &&  apk del --purge 	build-dependencies &&  rm -rf 	/tmp/* # buildkit
                        
# 2025-10-12 22:36:17  0.00B 设置环境变量 PS1 HOME TERM
ENV PS1=$(whoami)@$(hostname):$(pwd)\$  HOME=/root TERM=xterm
                        
# 2025-10-12 22:36:17  0.00B 添加元数据标签
LABEL maintainer=NG6
                        
# 2025-10-12 22:36:11  331.00B 复制新文件或目录到容器中
COPY patch/ /tmp/patch # buildkit
                        
# 2025-10-12 22:36:11  5.98MB 复制新文件或目录到容器中
COPY /downloads/s6-overlay/ / # buildkit
                        
# 2025-10-08 19:04:56  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-10-08 19:04:56  8.51MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.2-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:88eaab3269b9d9b92c1d3e6b59f2aa2578af1aba133dc5cffd8a8f02c439cbe0",
    "RepoTags": [
        "superng6/qbittorrentee:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee:latest-linuxarm64"
    ],
    "RepoDigests": [
        "superng6/qbittorrentee@sha256:f55cb8ec1a15a2e146819ee2f95b701b263c9eabc1918dd76515badd86d17470",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/superng6/qbittorrentee@sha256:b1869b3f15e30e9ddbfdfc8392676df11bf1da610558eeb83819e2f18c6a9766"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-15T21:38:05.449379808Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "6881/tcp": {},
            "6881/udp": {},
            "8080/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "PS1=$(whoami)@$(hostname):$(pwd)\\$ ",
            "HOME=/root",
            "TERM=xterm",
            "TZ=Asia/Shanghai",
            "WEBUIPORT=8080",
            "ENABLE_DOWNLOADS_PERM_FIX=true"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": {
            "/config": {},
            "/downloads": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "/init"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NG6"
        }
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 112526292,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f400cf0623edee86ff39d6c9c36f738739f9f465c35d7630e8b63ead19b75620/diff:/var/lib/docker/overlay2/ca5846e6aac62c84f75f07e16c164ae1d565c509bc543402fd54f3664e394b40/diff:/var/lib/docker/overlay2/bc4757b951491cba0574df5fa601407ae38e0b97c0ba9341ebce065d7746aaad/diff:/var/lib/docker/overlay2/83170e9f9428a3e527fd9099ea884bcdbaeb0e7c43da7245843008b7e93c58ab/diff:/var/lib/docker/overlay2/16a40b6ac1cde0e853c2d99cb959d40da6f2cdebaf57cb60890eb7ba89480350/diff:/var/lib/docker/overlay2/b1851fd968c9a28c8d75db34342fa373794d07c95f4d0aa867dd34ee5b5f9ee3/diff:/var/lib/docker/overlay2/da2437a11e9851453a2c01bfffce84d9a9cd7e5c36d631bc4aeb0085c800506a/diff",
            "MergedDir": "/var/lib/docker/overlay2/d409fbb455e307c3a94f4559efea9598d13bd0bac8462cd253bc9520cd30eabe/merged",
            "UpperDir": "/var/lib/docker/overlay2/d409fbb455e307c3a94f4559efea9598d13bd0bac8462cd253bc9520cd30eabe/diff",
            "WorkDir": "/var/lib/docker/overlay2/d409fbb455e307c3a94f4559efea9598d13bd0bac8462cd253bc9520cd30eabe/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:0e64f2360a448b389c83fcbc3705e1364ccf43f004bb55233c689e7ce59a1ae9",
            "sha256:5ac3a6f55e6584c7d5051752de1ae6c28f3917a1c77e41602ae70382ac307d27",
            "sha256:9d0465ddd78dc9e603c111ec98af0e35d0eed55b6632321382108059fdc075fb",
            "sha256:af333ced19e2edf6736cabf6c008a37eb35dea856ee996b7a4fe83aa2870d92b",
            "sha256:a7d46cf75c1eb7006c30bb0331d0732e2c906600947e044bdf468353ef44411a",
            "sha256:53bc4b920404de6b71a1d6a694ec8cf8c5c491191adf9267967e5fe7e672f4ba",
            "sha256:5df17b0064b31a07d8c178197026b5522ca1f9c2ade260049767ca6b1c920186",
            "sha256:86090fad8e9bb4982fa556be3044c1670aaffc30f3d9d4181e6b98caa6cff695"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-02T22:51:13.036631202+08:00"
    }
}

更多版本

docker.io/superng6/qbittorrentee:latest

linux/amd64 docker.io97.62MB2024-11-20 10:39
998

docker.io/superng6/qbittorrentee:4.6.0.10

linux/amd64 docker.io100.85MB2025-02-07 12:50
561

docker.io/superng6/qbittorrentee:4.6.0.10

linux/arm64 docker.io121.39MB2025-02-07 12:51
442

docker.io/superng6/qbittorrentee:5.1.0.11

linux/amd64 docker.io101.79MB2025-06-26 19:59
191

docker.io/superng6/qbittorrentee:5.1.1.10

linux/amd64 docker.io101.95MB2025-07-02 16:37
257

docker.io/superng6/qbittorrentee:5.1.2.10

linux/amd64 docker.io101.97MB2025-07-18 20:54
260

docker.io/superng6/qbittorrentee:5.1.3.10

linux/amd64 docker.io103.46MB2025-12-31 18:11
245

docker.io/superng6/qbittorrentee:latest

linux/arm64 docker.io112.53MB2026-04-02 22:51
10