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

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

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

源镜像 docker.io/openlistteam/openlist:v4.0.4
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.0.4
镜像ID sha256:7e0691e24fa5e12153b3dfde27e9b80d7c09f80a7bac3536f0868f71b7c7342a
镜像TAG v4.0.4
大小 129.73MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/amd64
浏览量 12 次
贡献者
镜像创建 2025-06-27T08:49:18.751723702Z
同步时间 2025-06-27 17:25
更新时间 2025-06-28 03:49
开放端口
5244/tcp 5245/tcp
目录挂载
/opt/openlist/data/
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PUID=0 PGID=0 UMASK=022 RUN_ARIA2=false
镜像标签
OpenList: MAINTAINER 2025-06-27T08:49:02.044Z: org.opencontainers.image.created A new AList Fork to Anti Trust Crisis: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses e32cebb153068abef2fa0d54d9eeb2984f2db3e6: 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.0.4: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-06-27 16:49:18  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2025-06-27 16:49:18  0.00B 声明容器运行时监听的端口
EXPOSE map[5244/tcp:{} 5245/tcp:{}]
                        
# 2025-06-27 16:49:18  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/openlist/data/]
                        
# 2025-06-27 16:49:18  0.00B 设置环境变量 PUID PGID UMASK RUN_ARIA2
ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=false
                        
# 2025-06-27 16:49:18  0.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /bin/sh -c /entrypoint.sh version # buildkit
                        
# 2025-06-27 16:49:18  445.00B 复制新文件或目录到容器中
COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-06-27 16:49:18  110.99MB 复制新文件或目录到容器中
COPY --chmod=755 /build/linux/amd64/openlist ./ # buildkit
                        
# 2025-06-27 16:49:14  10.91MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /bin/sh -c apk update &&     apk upgrade --no-cache &&     apk add --no-cache bash ca-certificates su-exec tzdata;     [ "$INSTALL_FFMPEG" = "true" ] && apk add --no-cache ffmpeg;     [ "$INSTALL_ARIA2" = "true" ] && apk add --no-cache curl aria2 &&         mkdir -p /opt/aria2/.aria2 &&         wget https://github.com/P3TERX/aria2.conf/archive/refs/heads/master.tar.gz -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 &&         touch /opt/aria2/.aria2/aria2.session &&         /opt/aria2/.aria2/tracker.sh ;     rm -rf /var/cache/apk/* # buildkit
                        
# 2025-06-27 16:49:04  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2025-06-27 16:49:04  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2025-06-27 16:49:04  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2025-06-27 16:49:04  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2025-06-27 16:49:04  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:7e0691e24fa5e12153b3dfde27e9b80d7c09f80a7bac3536f0868f71b7c7342a",
    "RepoTags": [
        "openlistteam/openlist:v4.0.4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist:v4.0.4"
    ],
    "RepoDigests": [
        "openlistteam/openlist@sha256:0ffcbe07b455a8be9857150efbed6b49854fa74a2b97f8e62dd444caba61ca98",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/openlistteam/openlist@sha256:051fae594a8d8af9c04b235c54b3d3aae3ed977f4bb55bd406857857b95c0f13"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-06-27T08:49:18.751723702Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "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",
            "PUID=0",
            "PGID=0",
            "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": "2025-06-27T08:49:02.044Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "e32cebb153068abef2fa0d54d9eeb2984f2db3e6",
            "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.0.4"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 129728550,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/42e15906783500a678b12d36ad786550a42eee73bcbe397ef5d66c38060c471d/diff:/var/lib/docker/overlay2/157ce185b246dd77781a8af5dfb1e8eb4c12743c1f52e4ae8c5ff202c63da621/diff:/var/lib/docker/overlay2/743d9354eb3b37b8326f1734e511d667514b1b3ee8b18e4120eef8f1e8c6499c/diff:/var/lib/docker/overlay2/6dbdaec76638bf27e5adad4fdfff2f9a54f737942e1145fa22c01834ae334a50/diff:/var/lib/docker/overlay2/ac8202200182be4cdd6be11a2e0f2becfb620fa4e27c39959ca1dd440fcb44ca/diff",
            "MergedDir": "/var/lib/docker/overlay2/6fc09be27b6a3020dc2e9cc44bdc2518e5c9b458ffecbc33b0625dd246c8a092/merged",
            "UpperDir": "/var/lib/docker/overlay2/6fc09be27b6a3020dc2e9cc44bdc2518e5c9b458ffecbc33b0625dd246c8a092/diff",
            "WorkDir": "/var/lib/docker/overlay2/6fc09be27b6a3020dc2e9cc44bdc2518e5c9b458ffecbc33b0625dd246c8a092/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e21721183b10fa6d84b263043a2e6a3f972aab36fcbdb9640aeeb21044a8c8c1",
            "sha256:67e8fd8dd436c44337a53fce32d9ce28f2c5c21d03d160c24db736e7ad027338",
            "sha256:0e0c28c59e7034de8a6c2c514e40da67cfc80efe1991d955d2e01f3f6b5bcfa1",
            "sha256:9f026dad987377e0e495891ef4c9caeeb576850141730be731ebe2e099b0ce3f",
            "sha256:ba8552ca2b4f6a143ed1649dd2a2af6c8aee0af0e1ebf9ef12fff298ee9f1e05",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-06-27T17:25:45.548812018+08:00"
    }
}

更多版本

docker.io/openlistteam/openlist:beta

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

docker.io/openlistteam/openlist:v4.0.2

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

docker.io/openlistteam/openlist:v4.0.3

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

docker.io/openlistteam/openlist:v4.0.4

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