广告图片

docker.io/openlistteam/openlist:v4.2.1 linux/amd64

docker.io/openlistteam/openlist:v4.2.1 - 国内下载镜像源 浏览次数:15

这是一个名为“openlist”的Docker镜像,由OpenList团队维护。 具体功能和用途需要参考镜像的文档或README文件。

源镜像 docker.io/openlistteam/openlist:v4.2.1
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1
镜像ID sha256:bc91f0041f5a63687647bf68823ca31b940e20ef84ea27da94f08fa3c49075c9
镜像TAG v4.2.1
大小 173.18MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/amd64
浏览量 15 次
贡献者
镜像创建 2026-04-09T16:46:59.39342309Z
同步时间 2026-04-20 18:30
开放端口
5244/tcp 5245/tcp
目录挂载
/opt/openlist/data/
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin UMASK=022 RUN_ARIA2=false
镜像标签
OpenList: MAINTAINER 2026-04-09T16:46:43.683Z: org.opencontainers.image.created A new AList Fork to Anti Trust Crisis: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses 8d39d636be112532d89ff83a5de4cb9fd62c0883: org.opencontainers.image.revision https://github.com/OpenListTeam/OpenList: org.opencontainers.image.source OpenList: org.opencontainers.image.title https://github.com/OpenListTeam/OpenList: org.opencontainers.image.url v4.2.1: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1  docker.io/openlistteam/openlist:v4.2.1

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1  docker.io/openlistteam/openlist:v4.2.1

Shell快速替换命令

sed -i 's#openlistteam/openlist:v4.2.1#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1  docker.io/openlistteam/openlist:v4.2.1'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1  docker.io/openlistteam/openlist:v4.2.1'

镜像构建历史


# 2026-04-10 00:46:59  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2026-04-10 00:46:59  0.00B 声明容器运行时监听的端口
EXPOSE [5244/tcp 5245/tcp]
                        
# 2026-04-10 00:46:59  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/openlist/data/]
                        
# 2026-04-10 00:46:59  0.00B 设置环境变量 UMASK RUN_ARIA2
ENV UMASK=022 RUN_ARIA2=false
                        
# 2026-04-10 00:46:59  0.00B 执行命令并创建新的镜像层
RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
                        
# 2026-04-10 00:46:59  0.00B 指定运行容器时使用的用户
USER openlist
                        
# 2026-04-10 00:46:59  1.32KB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2026-04-10 00:46:59  153.98MB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit
                        
# 2026-04-10 00:46:48  3.06KB 执行命令并创建新的镜像层
RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} &&     adduser -D -u ${UID} -G ${USER} ${USER} &&     mkdir -p /opt/openlist/data # buildkit
                        
# 2026-04-10 00:46:48  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG GID=1001
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG UID=1001
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG USER=openlist
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2026-04-10 00:46:48  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2026-04-10 00:46:48  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2026-04-09 04:40:19  72.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start &&     mkdir -p /opt/service/stop/openlist &&     echo '#!/bin/sh' > /opt/service/stop/openlist/run &&     echo 'exec 2>&1' >> /opt/service/stop/openlist/run &&     echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run &&     echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run &&     chmod +x /opt/service/stop/openlist/run # buildkit
                        
# 2026-04-09 04:40:19  10.75MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" &&     apk update &&     apk upgrade --no-cache &&     apk add --no-cache bash ca-certificates su-exec tzdata runit &&     if [ "$INSTALL_FFMPEG" = "true" ]; then         echo "📦 Installing FFmpeg..." &&         apk add --no-cache ffmpeg;     else         echo "⏭️  Skipping FFmpeg installation";     fi &&     if [ "$INSTALL_ARIA2" = "true" ]; then         echo "📦 Installing Aria2..." &&         apk add --no-cache curl aria2 &&         mkdir -p /opt/aria2/.aria2 &&         curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz &&         tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz &&         sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf &&         sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf &&         sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf &&         sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf &&         sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf &&         mkdir -p /opt/service/stop/aria2/log &&         echo '#!/bin/sh' > /opt/service/stop/aria2/run &&         echo 'exec 2>&1' >> /opt/service/stop/aria2/run &&         echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run &&         echo '#!/bin/sh' > /opt/service/stop/aria2/log/run &&         echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run &&         echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run &&         chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run &&         touch /opt/aria2/.aria2/aria2.session &&         (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️  Tracker update failed, continuing...");     else         echo "⏭️  Skipping Aria2 installation";     fi &&     rm -rf /var/cache/apk/* # buildkit
                        
# 2026-04-09 04:40:14  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2026-04-09 04:40:14  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2026-04-09 04:40:14  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2026-04-09 04:40:14  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2026-04-09 04:40:14  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2026-01-28 09:17:51  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-01-28 09:17:51  8.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-20260127-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:bc91f0041f5a63687647bf68823ca31b940e20ef84ea27da94f08fa3c49075c9",
    "RepoTags": [
        "openlistteam/openlist:v4.2.1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.2.1"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:532a559b20711b67e5156462a79c9704e895f67eba2f2511b43bf5cda3ccbaa5",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:25198030c620b7d0318318e372e3d5fe07624a56078575f94a5de2e8a918b8ff"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-09T16:46:59.39342309Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "openlist",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "5244/tcp": {},
            "5245/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "UMASK=022",
            "RUN_ARIA2=false"
        ],
        "Cmd": [
            "/entrypoint.sh"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": {
            "/opt/openlist/data/": {}
        },
        "WorkingDir": "/opt/openlist/",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "MAINTAINER": "OpenList",
            "org.opencontainers.image.created": "2026-04-09T16:46:43.683Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "8d39d636be112532d89ff83a5de4cb9fd62c0883",
            "org.opencontainers.image.source": "https://github.com/OpenListTeam/OpenList",
            "org.opencontainers.image.title": "OpenList",
            "org.opencontainers.image.url": "https://github.com/OpenListTeam/OpenList",
            "org.opencontainers.image.version": "v4.2.1"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 173175356,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f2b52ef758d9ffe08d23549b7f0faf71d7816ca9d1933d23aba4b7cf929c8cfa/diff:/var/lib/docker/overlay2/06bf36d181911f3aa65bf3bc26109daaaab8ffc96ac48b653efe1b34eeb5db75/diff:/var/lib/docker/overlay2/333b14d8ac76e0ededbd8526d1d7665c262706f4c622347b7bfd21f8d085e5ba/diff:/var/lib/docker/overlay2/ec2fe52ce449e68c905d86317010ee590691a301349a406d54c35b6ce664e6b6/diff:/var/lib/docker/overlay2/b514be31bee6d129769ad169fe0b57b48d29bd68928d7feebc1046c43c64586e/diff:/var/lib/docker/overlay2/152729bee74ef5a7049e3e1eb4afe27d0b5c37207d926ecb23562d3d76732415/diff:/var/lib/docker/overlay2/22d80511fca8c2e3a60fcfbe49fd499e3d01ce6a874747e9bd767f65f006416e/diff:/var/lib/docker/overlay2/1d51298c2de891a8942752652decaaf1a6ac9aa5628b32d2a8d9ac677b20b932/diff",
            "MergedDir": "/var/lib/docker/overlay2/24e95fd7a6b30481fd1425869472183ff8ca383ed84f3f92215cbf88335653b2/merged",
            "UpperDir": "/var/lib/docker/overlay2/24e95fd7a6b30481fd1425869472183ff8ca383ed84f3f92215cbf88335653b2/diff",
            "WorkDir": "/var/lib/docker/overlay2/24e95fd7a6b30481fd1425869472183ff8ca383ed84f3f92215cbf88335653b2/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:8aa2272762a48ef46db65bcc10c3cc8f9589cb5ae2311c4ca1e512bfd24ef95a",
            "sha256:00c71e3a2b1d36294261b7ba46047192fd13bccbb316c8618a466ac6ac8612ca",
            "sha256:f186c1eb08e45aa660a985381df2217a71de8ab3ddaab431963afb459a8d5de4",
            "sha256:7bcdfc092db9b9673c1b24f11a6cc3790dc252357cb84bd3d7b96cdfbb80b0b9",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:4c8dfc96b123adae743a4273faeae0876c50a25c37e1d09a27e8ca5e0ed02c8c",
            "sha256:573ef784060bac291eb2cc6304ee782a6abeaca00a7bed700b7d5307e30d16da",
            "sha256:05275218da85d5202140faa1f05158716fb10a6266d1f0c1cb3fb7af965e81ad",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-20T18:30:04.885242609+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

linux/amd64 docker.io99.50MB2025-06-19 19:38
739

docker.io/openlistteam/openlist:v4.0.2

linux/amd64 docker.io128.20MB2025-06-24 15:52
796

docker.io/openlistteam/openlist:v4.0.3

linux/amd64 docker.io128.41MB2025-06-25 16:04
398

docker.io/openlistteam/openlist:v4.0.4

linux/amd64 docker.io129.73MB2025-06-27 17:25
558

docker.io/openlistteam/openlist:v4.0.5

linux/amd64 docker.io129.73MB2025-07-02 17:08
321

docker.io/openlistteam/openlist:v4.0.8-aio

linux/amd64 docker.io278.53MB2025-07-05 18:22
422

docker.io/openlistteam/openlist:v4.0.8

linux/amd64 docker.io136.96MB2025-07-06 10:18
447

docker.io/openlistteam/openlist:v4.0.8-aria2

linux/amd64 docker.io152.75MB2025-07-16 16:35
690

docker.io/openlistteam/openlist:latest

linux/amd64 docker.io136.96MB2025-07-17 23:03
631

docker.io/openlistteam/openlist:latest-lite-aio

linux/arm64 docker.io222.98MB2025-07-22 09:34
415

docker.io/openlistteam/openlist:v4.0.8-lite-aio

linux/arm64 docker.io222.98MB2025-07-22 09:36
281

docker.io/openlistteam/openlist:v4.0.9

linux/amd64 docker.io140.28MB2025-07-27 11:42
333

docker.io/openlistteam/openlist:latest

linux/arm64 docker.io139.89MB2025-07-29 20:29
366

docker.io/openlistteam/openlist:v4.1.0

linux/amd64 docker.io140.13MB2025-08-03 01:17
414

docker.io/openlistteam/openlist:v4.1.1

linux/amd64 docker.io291.50MB2025-08-22 19:30
363

docker.io/openlistteam/openlist:v4.1.2

linux/amd64 docker.io156.33MB2025-09-07 15:56
355

docker.io/openlistteam/openlist:v4.1.3-lite-aio

linux/arm64 docker.io218.61MB2025-09-29 17:40
284

docker.io/openlistteam/openlist:v4.1.4

linux/arm64 docker.io155.46MB2025-10-08 15:30
223

docker.io/openlistteam/openlist:v4.1.4

linux/amd64 docker.io156.81MB2025-10-08 23:38
287

docker.io/openlistteam/openlist:v4.1.5

linux/amd64 docker.io160.37MB2025-10-30 11:01
287

docker.io/openlistteam/openlist:v4.1.7

linux/amd64 docker.io160.54MB2025-11-13 06:11
343

docker.io/openlistteam/openlist:v4.1.8-ffmpeg

linux/amd64 docker.io293.21MB2025-11-27 20:12
271

docker.io/openlistteam/openlist:v4.1.8

linux/amd64 docker.io159.46MB2025-11-27 20:41
198

docker.io/openlistteam/openlist:v4.1.8-aio

linux/amd64 docker.io305.18MB2025-12-11 10:47
190

docker.io/openlistteam/openlist:v4.1.8

linux/arm64 docker.io157.84MB2025-12-11 14:44
207

docker.io/openlistteam/openlist:v4.1.9

linux/amd64 docker.io152.43MB2026-01-04 20:31
438

docker.io/openlistteam/openlist:v4.1.9

linux/arm64 docker.io150.48MB2026-01-18 11:12
206

docker.io/openlistteam/openlist:v4.1.9-aio

linux/amd64 docker.io298.33MB2026-01-26 15:20
248

docker.io/openlistteam/openlist:v4.1.10

linux/amd64 docker.io153.10MB2026-02-02 14:45
200

docker.io/openlistteam/openlist:v4.1.10-lite

linux/amd64 docker.io96.42MB2026-02-09 17:50
154

docker.io/openlistteam/openlist:v4.1.10-ffmpeg

linux/amd64 docker.io287.07MB2026-02-10 16:59
166

docker.io/openlistteam/openlist:v4.2.1

linux/amd64 docker.io173.18MB2026-04-20 18:30
14