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

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

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

源镜像 docker.io/openlistteam/openlist:v4.1.9-aio
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-aio
镜像ID sha256:b1b0529cf80904595d80949f56cc0b50608edd75a1810ad4627908d988be123f
镜像TAG v4.1.9-aio
大小 298.33MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/amd64
浏览量 17 次
贡献者
镜像创建 2026-01-01T15:22:21.649601994Z
同步时间 2026-01-26 15:20
更新时间 2026-01-27 18:20
开放端口
5244/tcp 5245/tcp
目录挂载
/opt/openlist/data/
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin UMASK=022 RUN_ARIA2=true
镜像标签
OpenList: MAINTAINER 2026-01-01T15:22:04.773Z: org.opencontainers.image.created A new AList Fork to Anti Trust Crisis: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses 874234449b25f0d6ef1c674efbb4f1f8ab0eb763: 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.1.9-aio: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


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

镜像信息

{
    "Id": "sha256:b1b0529cf80904595d80949f56cc0b50608edd75a1810ad4627908d988be123f",
    "RepoTags": [
        "openlistteam/openlist:v4.1.9-aio",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-aio"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:9408a04df16c0990eca9c802b390206c9ffc19588369de93979578e06193bd37",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:10ca95471123d718eb7b241d82606787c6581754e79e91060a94f7b7c195c7ef"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-01T15:22:21.649601994Z",
    "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=true"
        ],
        "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-01-01T15:22:04.773Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "874234449b25f0d6ef1c674efbb4f1f8ab0eb763",
            "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.1.9-aio"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 298331900,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/7ee2623cd63f0e8dda0ac9858e24633ca9aa03d9e1bd6a5fdad873038fb6ea54/diff:/var/lib/docker/overlay2/c014f5f668fde171dbae314bc66452447373cdb64261909432d40bfbbc5b82fa/diff:/var/lib/docker/overlay2/7a9cd60ce232e6625fe9f213ae67318cf195870589f588cba37d046df37f29a3/diff:/var/lib/docker/overlay2/1da3764aa6c0e0c79105b1b7434cd8b0539cbe1416afeab7a1ac78b598099cfe/diff:/var/lib/docker/overlay2/aa30cb509c5f63b16078787482bf6b6f0dec8ffc6e1a23e96526772bbc49f591/diff:/var/lib/docker/overlay2/49b1d6fffe4eaac263c199aed0cfd28cc31d60fa88c4cc7ce16a798b21d6b584/diff:/var/lib/docker/overlay2/9982842b3ea906f032f4bf2cff20cfc82aa5b145e4137fb0750f255ec88fa02c/diff:/var/lib/docker/overlay2/38f37321e192c6ed40fd4b6cb778206838711b939537c78cdbdcb27d9853fca5/diff",
            "MergedDir": "/var/lib/docker/overlay2/36f1b498473591d5ebf1654923ab38605b71209ca95949445aeadcf5566eb562/merged",
            "UpperDir": "/var/lib/docker/overlay2/36f1b498473591d5ebf1654923ab38605b71209ca95949445aeadcf5566eb562/diff",
            "WorkDir": "/var/lib/docker/overlay2/36f1b498473591d5ebf1654923ab38605b71209ca95949445aeadcf5566eb562/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:be441fb38fffc0abc85b02e37a155be4181dd02af05d4cbc64e0c042acf62a37",
            "sha256:e2a39183808ca5020acc5e6ab78ca7e32b9610d86bf8805862b80f643cce7025",
            "sha256:92c582e9cf9451be0d37ee8bef87a6237279fa95b15201c0fc16d6069b370bf4",
            "sha256:5733c8902df81ce3897e9c06c1e5cbdd27a7aea8a1145df54e46161995517c6e",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:31ef12f3a49829094bafd4be04883d24c20fc3939515450e7950863b0c8bef6c",
            "sha256:017c92ade53c6cf36a387387125268a18055d1ac2015f936ba1636741cebd4a1",
            "sha256:77f5550cd26abfe228071fcd4ffcfa5593552e304af8f7777831942fe0114f8c",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-26T15:20:33.460541444+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

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

docker.io/openlistteam/openlist:v4.0.2

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

docker.io/openlistteam/openlist:v4.0.3

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

docker.io/openlistteam/openlist:v4.0.4

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

docker.io/openlistteam/openlist:v4.0.5

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

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

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

docker.io/openlistteam/openlist:v4.0.8

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

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

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

docker.io/openlistteam/openlist:latest

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

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

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

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

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

docker.io/openlistteam/openlist:v4.0.9

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

docker.io/openlistteam/openlist:latest

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

docker.io/openlistteam/openlist:v4.1.0

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

docker.io/openlistteam/openlist:v4.1.1

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

docker.io/openlistteam/openlist:v4.1.2

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

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

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.5

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

docker.io/openlistteam/openlist:v4.1.7

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

docker.io/openlistteam/openlist:v4.1.9

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

docker.io/openlistteam/openlist:v4.1.9

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

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

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