docker.io/openlistteam/openlist:v4.1.9 linux/arm64

docker.io/openlistteam/openlist:v4.1.9 - 国内下载镜像源 浏览次数:21 温馨提示: 这是一个 linux/arm64 系统架构镜像

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

源镜像 docker.io/openlistteam/openlist:v4.1.9
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-linuxarm64
镜像ID sha256:97bc7692a38fa90612444ed9f2b66f7d4a12dcd5a46744c8e7e6ba35a8a5c362
镜像TAG v4.1.9-linuxarm64
大小 150.48MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/arm64
浏览量 21 次
贡献者
镜像创建 2026-01-01T15:21:33.283544898Z
同步时间 2026-01-18 11:12
更新时间 2026-01-19 13:21
开放端口
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-01-01T15:21:15.365Z: 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: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#openlistteam/openlist:v4.1.9#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-linuxarm64#' 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-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-linuxarm64  docker.io/openlistteam/openlist:v4.1.9'

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-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-linuxarm64  docker.io/openlistteam/openlist:v4.1.9'

镜像构建历史


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

镜像信息

{
    "Id": "sha256:97bc7692a38fa90612444ed9f2b66f7d4a12dcd5a46744c8e7e6ba35a8a5c362",
    "RepoTags": [
        "openlistteam/openlist:v4.1.9",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.9-linuxarm64"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:b00891ec85e424c1233ce3c6c388226432ed51dda3fb2889396e614c13c3aefb",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:9d67d6a3b2a17c0b30c33570f884a00544631251737b94a82ecbf4142e7e1de9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-01T15:21:33.283544898Z",
    "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-01-01T15:21:15.365Z",
            "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"
        }
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 150475312,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/8dc7da2aa9c83db8ba9d86d2a606563245da9de00b8c7257b7aaff0a15311a27/diff:/var/lib/docker/overlay2/768356e19f3f05722737f888015f2d4926fc99cd29868a208063f4bc34100b6f/diff:/var/lib/docker/overlay2/86757e8c50702d466e9824bed41f426a3fd06d178bfb11106d663b7152d037be/diff:/var/lib/docker/overlay2/3b50e932ee418c2894ed3c7b779b22b6c1f24074bd0ada1d05e2496c7153e21c/diff:/var/lib/docker/overlay2/1fdf034c4881005c767a0fc665b6f7ad91f0ddfa58830b5aec880e2260e44f91/diff:/var/lib/docker/overlay2/8d895084c4907f7e8f9de04197b5ce04b1795eec10c054e187fe315c843a2026/diff:/var/lib/docker/overlay2/9a63169841b07e866582977900dbdec67dabcdb469e0ef200768e3f269d64731/diff:/var/lib/docker/overlay2/d866992a25451754cd7d802713d8669b7fcdb16bc7d19ffadb0eb7af785fd547/diff",
            "MergedDir": "/var/lib/docker/overlay2/8060d72be2fe2b127a701c3811e99b069d04a0bb8b406eb20213502e0069f8d4/merged",
            "UpperDir": "/var/lib/docker/overlay2/8060d72be2fe2b127a701c3811e99b069d04a0bb8b406eb20213502e0069f8d4/diff",
            "WorkDir": "/var/lib/docker/overlay2/8060d72be2fe2b127a701c3811e99b069d04a0bb8b406eb20213502e0069f8d4/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:1fd166676927ef2ff9c7936604f34f0757b3438053d930d7ef4c209adcc916c1",
            "sha256:4b13d3670e61c02c22304a1ebe35b03447d95720f944003267fd8392d1b0353b",
            "sha256:3af81552a9f72e5cd87a992020e9ad888bfb27774342783f7f3637ef8bc7cdb3",
            "sha256:2fff6c1fc801643287ee86e20d9ca4f34b68a0c524ec7760265df91273e1d862",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:2d0e42be53488f6d09f76e8f6991b05c301503fdb72068d1bfc933c5b5725d58",
            "sha256:bcf94f967c38e9c9941e1688fcfe968268aaba345efd8f2bdd42b49abdbca703",
            "sha256:666920b4925d81b5452ec3c8b3d1455a371094f1ed696828ed9b4ab5e51b69b6",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-18T11:12:17.054230366+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

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

docker.io/openlistteam/openlist:v4.0.2

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

docker.io/openlistteam/openlist:v4.0.3

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

docker.io/openlistteam/openlist:v4.0.4

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

docker.io/openlistteam/openlist:v4.0.5

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

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

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

docker.io/openlistteam/openlist:v4.0.8

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

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

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

docker.io/openlistteam/openlist:latest

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

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

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

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

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

docker.io/openlistteam/openlist:v4.0.9

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

docker.io/openlistteam/openlist:latest

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

docker.io/openlistteam/openlist:v4.1.0

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

docker.io/openlistteam/openlist:v4.1.1

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

docker.io/openlistteam/openlist:v4.1.2

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

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

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.5

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

docker.io/openlistteam/openlist:v4.1.7

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

docker.io/openlistteam/openlist:v4.1.9

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

docker.io/openlistteam/openlist:v4.1.9

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