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

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

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

源镜像 docker.io/openlistteam/openlist:v4.1.8-aio
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.8-aio
镜像ID sha256:20018bbc1e9880bfa736cabde0e554dfc360e1b0e9fb95606a11f6c140318461
镜像TAG v4.1.8-aio
大小 305.18MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/amd64
浏览量 13 次
贡献者 li********0@gmail.com
镜像创建 2025-11-25T11:58:03.843870265Z
同步时间 2025-12-11 10:47
更新时间 2025-12-11 16:52
开放端口
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 2025-11-25T11:57:48.233Z: org.opencontainers.image.created A new AList Fork to Anti Trust Crisis: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses 72206ac9f69a15f2e142979cb92e694bafc34a3b: 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.8-aio: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2025-11-25 19:58:03  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2025-11-25 19:58:03  0.00B 声明容器运行时监听的端口
EXPOSE [5244/tcp 5245/tcp]
                        
# 2025-11-25 19:58:03  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/openlist/data/]
                        
# 2025-11-25 19:58:03  0.00B 设置环境变量 UMASK RUN_ARIA2
ENV UMASK=022 RUN_ARIA2=true
                        
# 2025-11-25 19:58:03  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
                        
# 2025-11-25 19:58:03  0.00B 指定运行容器时使用的用户
USER openlist
                        
# 2025-11-25 19:58:03  1.32KB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-11-25 19:58:02  139.42MB 复制新文件或目录到容器中
COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit
                        
# 2025-11-25 19:58:01  3.24KB 执行命令并创建新的镜像层
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
                        
# 2025-11-25 19:58:00  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG GID=1001
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG UID=1001
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG USER=openlist
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG INSTALL_ARIA2=true
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG INSTALL_FFMPEG=true
                        
# 2025-11-25 19:58:00  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-11-25 19:58:00  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2025-11-25 04:27:54  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
                        
# 2025-11-25 04:27:54  157.92MB 执行命令并创建新的镜像层
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
                        
# 2025-11-25 04:27:43  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2025-11-25 04:27:43  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2025-11-25 04:27:43  0.00B 定义构建参数
ARG INSTALL_ARIA2=true
                        
# 2025-11-25 04:27:43  0.00B 定义构建参数
ARG INSTALL_FFMPEG=true
                        
# 2025-11-25 04:27:43  0.00B 定义构建参数
ARG TARGETPLATFORM=linux/amd64
                        
# 2025-01-08 20:16:36  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-01-08 20:16:36  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-20250108-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:20018bbc1e9880bfa736cabde0e554dfc360e1b0e9fb95606a11f6c140318461",
    "RepoTags": [
        "openlistteam/openlist:v4.1.8-aio",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.1.8-aio"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:fed5bf3c8e1a0a4ab1659ceb8a38f70aba4dad4316fa380a872a206d6e7de86e",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:af7a70246cc9abf8df46a14007c02b61e962fa6970c61da3f3a652e5de649064"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-25T11:58:03.843870265Z",
    "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": "2025-11-25T11:57:48.233Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "72206ac9f69a15f2e142979cb92e694bafc34a3b",
            "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.8-aio"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 305181325,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/fd6b2abc2a02af1e2cd3e97abfcc4f688c7842eb0d9e192079054d13767be14d/diff:/var/lib/docker/overlay2/da43d57e32499371e2efe5af9299fc95212341977bd2c8393e46962b567e72fe/diff:/var/lib/docker/overlay2/84f7bd670c61a23cd5c8d989f24be184200e54b219be01b015a656e57499956f/diff:/var/lib/docker/overlay2/dba3c2ebce68c45164431190266c2807e2e780f89022eafbd449fb8c6e214845/diff:/var/lib/docker/overlay2/ab8ab7c8440a2e58d88c4ac782b28c6b268055dd52f866c4840cca0ab525d1ad/diff:/var/lib/docker/overlay2/71f8395df86df6efe11d2d411aac7671d7920db0cc5d5a7a97000578e6d4a2dc/diff:/var/lib/docker/overlay2/a2abecd84b1020ba4b7911db3f72c2b723e0ed727cb061cf10a2ec36259d0ae4/diff:/var/lib/docker/overlay2/9c31474e772ae123b374bf0e1f8926e68c647504c8a8add1d86501831e1db6e5/diff",
            "MergedDir": "/var/lib/docker/overlay2/cb1d0467f46471a4d16091ff4e6b49891825efbd27f44c81d5837f01f7b0c6cd/merged",
            "UpperDir": "/var/lib/docker/overlay2/cb1d0467f46471a4d16091ff4e6b49891825efbd27f44c81d5837f01f7b0c6cd/diff",
            "WorkDir": "/var/lib/docker/overlay2/cb1d0467f46471a4d16091ff4e6b49891825efbd27f44c81d5837f01f7b0c6cd/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e21721183b10fa6d84b263043a2e6a3f972aab36fcbdb9640aeeb21044a8c8c1",
            "sha256:b7fb5563301d40fcef1bc391035e4207ecf4c2af3c8c18adf400353720b85926",
            "sha256:392d295475020258cd50f52e0a8114cc701b4fbb4dfd94ce3cdd8da2c1614f62",
            "sha256:1beb99c4e7b8efd042848f320d55ad6961cec6c5027f0d445a236787fe51f9d2",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:95c2a2351e0b6958d8682525b95d759a097da00f49cb7c29edb742b8869cf39a",
            "sha256:940c3fc26bc0466efa7cb55ac2296d8e478b9667f1f0e38c68af3ec2d50426fd",
            "sha256:ceef33a0f33c26e53d2d22d3ba573074750d4b8889da3dec38400d524e961eb0",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-11T10:47:34.126463724+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

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

docker.io/openlistteam/openlist:v4.0.2

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

docker.io/openlistteam/openlist:v4.0.3

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

docker.io/openlistteam/openlist:v4.0.4

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

docker.io/openlistteam/openlist:v4.0.5

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

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

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

docker.io/openlistteam/openlist:v4.0.8

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

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

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

docker.io/openlistteam/openlist:latest

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

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

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

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

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

docker.io/openlistteam/openlist:v4.0.9

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

docker.io/openlistteam/openlist:latest

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

docker.io/openlistteam/openlist:v4.1.0

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

docker.io/openlistteam/openlist:v4.1.1

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

docker.io/openlistteam/openlist:v4.1.2

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

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

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.4

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

docker.io/openlistteam/openlist:v4.1.5

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

docker.io/openlistteam/openlist:v4.1.7

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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

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

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

docker.io/openlistteam/openlist:v4.1.8

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