docker.io/alliot/alist:latest linux/amd64

docker.io/alliot/alist:latest - 国内下载镜像源 浏览次数:29

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

源镜像 docker.io/alliot/alist:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest
镜像ID sha256:e60dfbe0173d142a5ada1a17a9ad8db03a1536c97ae89422eb861d59d48b530d
镜像TAG latest
大小 99.65MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /entrypoint.sh
启动入口
工作目录 /opt/alist/
OS/平台 linux/amd64
浏览量 29 次
贡献者 80******5@qq.com
镜像创建 2025-06-23T16:21:46.2330079Z
同步时间 2025-10-16 12:51
更新时间 2025-10-21 03:54
开放端口
5244/tcp 5245/tcp
目录挂载
/opt/alist/data/
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PUID=0 PGID=0 UMASK=022 RUN_ARIA2=false
镜像标签
Alliot: MAINTAINER 2025-06-23T16:21:41.579Z: org.opencontainers.image.created OpenAList is a community-driven fork of Alist (based on v3.45.0), aiming to provide a more secure, customizable, and user-friendly file listing and management solution.: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses 6b5d4053880e4b1ac8e8329fe0243ee1df54b776: org.opencontainers.image.revision https://github.com/AlliotTech/openalist: org.opencontainers.image.source openalist: org.opencontainers.image.title https://github.com/AlliotTech/openalist: org.opencontainers.image.url v3.45.13: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest  docker.io/alliot/alist:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest  docker.io/alliot/alist:latest

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-06-24 00:21:46  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2025-06-24 00:21:46  0.00B 声明容器运行时监听的端口
EXPOSE map[5244/tcp:{} 5245/tcp:{}]
                        
# 2025-06-24 00:21:46  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/alist/data/]
                        
# 2025-06-24 00:21:46  0.00B 设置环境变量 PUID PGID UMASK RUN_ARIA2
ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=false
                        
# 2025-06-24 00:21:46  0.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /bin/sh -c /entrypoint.sh version # buildkit
                        
# 2025-06-24 00:21:46  436.00B 复制新文件或目录到容器中
COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-06-24 00:21:46  80.91MB 复制新文件或目录到容器中
COPY --chmod=755 /build/linux/amd64/alist ./ # buildkit
                        
# 2025-06-24 00:21:45  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-24 00:21:43  0.00B 设置工作目录为/opt/alist/
WORKDIR /opt/alist/
                        
# 2025-06-24 00:21:43  0.00B 添加元数据标签
LABEL MAINTAINER=Alliot
                        
# 2025-06-24 00:21:43  0.00B 定义构建参数
ARG INSTALL_ARIA2=false
                        
# 2025-06-24 00:21:43  0.00B 定义构建参数
ARG INSTALL_FFMPEG=false
                        
# 2025-06-24 00:21: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:e60dfbe0173d142a5ada1a17a9ad8db03a1536c97ae89422eb861d59d48b530d",
    "RepoTags": [
        "alliot/alist:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist:latest"
    ],
    "RepoDigests": [
        "alliot/alist@sha256:49ea56cfe08cffffca40f22d869498763bc6e8e924c062f9c3021124531dc365",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/alliot/alist@sha256:0223b548bea61b3b16521ff8bc5c91d2e71519a02f38e0b252ba9e1cbec9c35a"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-06-23T16:21:46.2330079Z",
    "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/alist/data/": {}
        },
        "WorkingDir": "/opt/alist/",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "MAINTAINER": "Alliot",
            "org.opencontainers.image.created": "2025-06-23T16:21:41.579Z",
            "org.opencontainers.image.description": "OpenAList is a community-driven fork of Alist (based on v3.45.0), aiming to provide a more secure, customizable, and user-friendly file listing and management solution.",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "6b5d4053880e4b1ac8e8329fe0243ee1df54b776",
            "org.opencontainers.image.source": "https://github.com/AlliotTech/openalist",
            "org.opencontainers.image.title": "openalist",
            "org.opencontainers.image.url": "https://github.com/AlliotTech/openalist",
            "org.opencontainers.image.version": "v3.45.13"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 99651613,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/76e36d1fd7a06fd87d1515ed7848918bd5863dc2b5df082601a1b217c8be4bcd/diff:/var/lib/docker/overlay2/d9014398e0f5d7b958d0bdd45a371ca2606cb6a587a0b2cb2b53c2bde5e5419f/diff:/var/lib/docker/overlay2/d4dc29cf89cfc4eca299be215f1eea0ac02a93a8ae2d9fcb3556a8e68b564bf9/diff:/var/lib/docker/overlay2/a2221cef38c6211f9e855d66c1e68fed5a9c5d8085ab740e90d5b32a706a4964/diff:/var/lib/docker/overlay2/bdeff92bb57ae16d01d0c7249c78fe4c8e98de4a2d12f52b99333ba1f947241c/diff",
            "MergedDir": "/var/lib/docker/overlay2/d77b7046a39040b3ebb698638e8a1bb8b6e0f13afcb74e86f15be509c7bcc00e/merged",
            "UpperDir": "/var/lib/docker/overlay2/d77b7046a39040b3ebb698638e8a1bb8b6e0f13afcb74e86f15be509c7bcc00e/diff",
            "WorkDir": "/var/lib/docker/overlay2/d77b7046a39040b3ebb698638e8a1bb8b6e0f13afcb74e86f15be509c7bcc00e/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e21721183b10fa6d84b263043a2e6a3f972aab36fcbdb9640aeeb21044a8c8c1",
            "sha256:7f57fc3feeaf4959498354ce35df3b3f9659b181a17d12c6f0c90860d1771594",
            "sha256:47443bfb21eee51f61471533c6e27198bc385fbe49a60a3b2cfc76fe658fad66",
            "sha256:b9457a3f5926b129c76c87dc910fd3d50cb167a198ef9c06e2ff5dd20d00adb1",
            "sha256:754e7382a3f3656d5cdb960a61455d7e394fb59f57958607f8bf2d3fca270cd4",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-16T12:51:51.008561531+08:00"
    }
}

更多版本

docker.io/alliot/alist:latest

linux/amd64 docker.io99.65MB2025-10-16 12:51
28