ℹ️
注意:这是一个 latest 标签镜像

latest 并不代表最新版本,本站同步时间存在延迟,无法保证此镜像与上游最新版本一致
生产环境建议使用明确的版本号(如 v1.2.3),避免因版本不一致导致问题。 了解更多 →

logo
docker.io/openlistteam/openlist:latest
linux/arm docker.io 请确认架构匹配

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

9
浏览次数
132.09MB
镜像大小
源镜像
docker.io/openlistteam/openlist:latest
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:latest-linuxarm
镜像ID
sha256:77723b8b646214eab997aba83e6e57536c5b1a3227bc924ecdd29861d3d34535
镜像 TAG
latest-linuxarm
镜像大小
132.09MB
平台架构
linux/arm
镜像源
docker.io
CMD
/entrypoint.sh
启动入口
工作目录
/opt/openlist/
OS/平台
linux/arm
镜像创建
2026-07-01T09:36:00.376334506Z
同步时间
2026-07-07 17:41
浏览量
9 次
贡献者
🔌 开放端口 2
5244/tcp 5245/tcp
📁 目录挂载 1
 /opt/openlist/data/
⚙️ 环境变量 3
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
UMASK=022 1
RUN_ARIA2=false 2
🏷️ 镜像标签 9
KeyValue
OpenList MAINTAINER
2026-07-01T09:35:45.264Z org.opencontainers.image.created
A new AList Fork to Anti Trust Crisis org.opencontainers.image.description
AGPL-3.0 org.opencontainers.image.licenses
a92d59d35c6c24930fba95a24e10d949480efe67 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.3 org.opencontainers.image.version
🛡️ 镜像安全扫描
alpine 3.24.1 Trivy 2026-07-07 17:42 查看完整报告
3
低危 LOW
13
中危 MEDIUM
13
高危 HIGH
6
严重 CRITICAL
受影响目标 (2)
docker.io/openlistteam/openlist:latest (alpine 3.24.1) alpine opt/openlist/openlist gobinary

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-07-01 17:36:00  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2026-07-01 17:36:00  0.00B 声明容器运行时监听的端口
EXPOSE [5244/tcp 5245/tcp]
                        
# 2026-07-01 17:36:00  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/openlist/data/]
                        
# 2026-07-01 17:36:00  0.00B 设置环境变量 UMASK RUN_ARIA2
ENV UMASK=022 RUN_ARIA2=false
                        
# 2026-07-01 17:36:00  0.00B 执行命令并创建新的镜像层
RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
                        
# 2026-07-01 17:35:57  0.00B 指定运行容器时使用的用户
USER openlist
                        
# 2026-07-01 17:35:57  1.32KB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2026-07-01 17:35:57  124.10MB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit
                        
# 2026-07-01 17:35:50  3.06KB 执行命令并创建新的镜像层
RUN |6 TARGETPLATFORM=linux/arm/v7 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-07-01 17:35:49  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG GID=1001
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG UID=1001
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG USER=openlist
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2026-07-01 17:35:49  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/arm/v7
                        
# 2026-07-01 17:35:49  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2026-07-01 05:28:27  72.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/arm/v7 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-07-01 05:28:27  2.54MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/arm/v7 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-07-01 05:28:14  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2026-07-01 05:28:14  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2026-07-01 05:28:14  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2026-07-01 05:28:14  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2026-07-01 05:28:14  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/arm/v7
                        
# 2026-06-16 08:00:26  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-16 08:00:26  5.44MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.24.1-armv7.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:77723b8b646214eab997aba83e6e57536c5b1a3227bc924ecdd29861d3d34535",
    "RepoTags": [
        "openlistteam/openlist:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:latest-linuxarm"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:b1df5cd378dbd0b04f8978afb1e78f2fd19749e9c7a8eedb4d780e9ea6659f8e",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:24adf6cd28794cc16e4b0b2f804a678e7039ffe9cb0af77f103d34b36955e4a9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-01T09:36:00.376334506Z",
    "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-07-01T09:35:45.264Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "a92d59d35c6c24930fba95a24e10d949480efe67",
            "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.3"
        }
    },
    "Architecture": "arm",
    "Variant": "v7",
    "Os": "linux",
    "Size": 132087453,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f92f22e9c3f591af92fa33c4e0a3313c9dfdb2c3482402a335927ced0a76036b/diff:/var/lib/docker/overlay2/2be6e3c2f071952fe80b6ea112ba3210e015c141247d824934effbe6f50d536e/diff:/var/lib/docker/overlay2/8b963b986a4272aff9f89ab37b36d66ace110e6b7965bcd3333cc73a06ad8fc3/diff:/var/lib/docker/overlay2/8d1ccfe88d99c470a69413e8bd7cb5c40baff4d458a1b120dc9216dde84a7c80/diff:/var/lib/docker/overlay2/eb3c4b0ba054fd02602e65613cb8d0eb3f08e1f143a986240d3b1b2580662cb5/diff:/var/lib/docker/overlay2/c69ea2438eaf079654673fa60cbe656e8d6cf4b7d00bef222f66794aba8773e8/diff:/var/lib/docker/overlay2/a67a4c1825ef2c1f83a143e498ea8141bd7b885d1aa2f45066264fa6537923bb/diff:/var/lib/docker/overlay2/e39af1f352094790368ba33ab8658c252f0260f7d7bd9ff6ec9645f4cfadc16d/diff",
            "MergedDir": "/var/lib/docker/overlay2/bd1b57b2b261fd001708b9e4d112de3df648319f4e5ad7ed696aae027e783329/merged",
            "UpperDir": "/var/lib/docker/overlay2/bd1b57b2b261fd001708b9e4d112de3df648319f4e5ad7ed696aae027e783329/diff",
            "WorkDir": "/var/lib/docker/overlay2/bd1b57b2b261fd001708b9e4d112de3df648319f4e5ad7ed696aae027e783329/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:1e30d7d82ee088ef08d915b4394ec1aa51a54d871dcd0770dc7503bee836e489",
            "sha256:0e159b0f55803e7af30d54916c3c484539c47a0b4f1290e1a5f8585b5ab0ad1b",
            "sha256:fe77ad23f22859013d32628f2123a114af9f957df3fa8e03bd9db9935f5d9827",
            "sha256:13bb1561715f3c4d78f51d5a56e04e04f4bfb5fcaadee14072c0e2ae97ae7f51",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:5759161a7c2175647e41abb3623922c8d56d45a1f02313811fafc8f0f5cb58b3",
            "sha256:90b1edddfe34fa11a693f7e69b3fb057170e7097d40d1ad1b3f73293abfce110",
            "sha256:50ef8f4d20210c7354308e269c4b71a2e5e45ded8ce54514399fca8d64c26bae",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-07T17:41:48.463962422+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

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

docker.io/openlistteam/openlist:v4.0.2

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

docker.io/openlistteam/openlist:v4.0.3

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

docker.io/openlistteam/openlist:v4.0.4

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

docker.io/openlistteam/openlist:v4.0.5

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

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

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

docker.io/openlistteam/openlist:v4.0.8

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

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

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

docker.io/openlistteam/openlist:latest

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

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

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

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

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

docker.io/openlistteam/openlist:v4.0.9

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

docker.io/openlistteam/openlist:latest

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

docker.io/openlistteam/openlist:v4.1.0

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

docker.io/openlistteam/openlist:v4.1.1

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

docker.io/openlistteam/openlist:v4.1.2

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

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

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.5

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

docker.io/openlistteam/openlist:v4.1.7

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

docker.io/openlistteam/openlist:v4.1.9

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

docker.io/openlistteam/openlist:v4.1.9

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

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

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

docker.io/openlistteam/openlist:v4.1.10

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

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

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

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

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

docker.io/openlistteam/openlist:v4.2.1

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

docker.io/openlistteam/openlist:v4.2.2

linux/amd64 docker.io145.44MB2026-05-28 16:20
190

docker.io/openlistteam/openlist:v4.2.3

linux/amd64 docker.io140.53MB2026-07-03 02:31
55

docker.io/openlistteam/openlist:latest

linux/arm docker.io132.09MB2026-07-07 17:41
8
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×