ghcr.io/openlistteam/openlist-git:v4.0.2-aio linux/amd64

ghcr.io/openlistteam/openlist-git:v4.0.2-aio - 国内下载镜像源 浏览次数:260

这是一个名为 ghcr.io/openlistteam/openlist-git 的 Docker 容器镜像。它很可能包含 OpenList 项目的 Git 相关的组件或工具。 具体功能需要参考项目文档。

源镜像 ghcr.io/openlistteam/openlist-git:v4.0.2-aio
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/openlistteam/openlist-git:v4.0.2-aio
镜像ID sha256:76a900b1000ea94af077159284367296a920b7ea042be373e0b24cf23ade0305
镜像TAG v4.0.2-aio
大小 270.48MB
镜像源 ghcr.io
CMD /entrypoint.sh
启动入口
工作目录 /opt/openlist/
OS/平台 linux/amd64
浏览量 260 次
贡献者
镜像创建 2025-06-23T09:35:48.685065859Z
同步时间 2025-06-24 15:38
更新时间 2025-12-14 13:20
开放端口
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=true
镜像标签
OpenList: MAINTAINER 2025-06-23T09:35:26.107Z: org.opencontainers.image.created A new AList Fork to Anti Trust Crisis: org.opencontainers.image.description AGPL-3.0: org.opencontainers.image.licenses 49213c1321fd39af02f267317fe0f6ebd2b4e2ac: 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.2-aio: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-06-23 17:35:48  0.00B 设置默认要执行的命令
CMD ["/entrypoint.sh"]
                        
# 2025-06-23 17:35:48  0.00B 声明容器运行时监听的端口
EXPOSE map[5244/tcp:{} 5245/tcp:{}]
                        
# 2025-06-23 17:35:48  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/opt/openlist/data/]
                        
# 2025-06-23 17:35:48  0.00B 设置环境变量 PUID PGID UMASK RUN_ARIA2
ENV PUID=0 PGID=0 UMASK=022 RUN_ARIA2=true
                        
# 2025-06-23 17:35:48  0.00B 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c /entrypoint.sh version # buildkit
                        
# 2025-06-23 17:35:48  445.00B 复制新文件或目录到容器中
COPY --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
                        
# 2025-06-23 17:35:48  109.46MB 复制新文件或目录到容器中
COPY --chmod=755 /build/linux/amd64/openlist ./ # buildkit
                        
# 2025-06-23 17:35:47  153.19MB 执行命令并创建新的镜像层
RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /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-23 17:35:28  0.00B 设置工作目录为/opt/openlist/
WORKDIR /opt/openlist/
                        
# 2025-06-23 17:35:28  0.00B 添加元数据标签
LABEL MAINTAINER=OpenList
                        
# 2025-06-23 17:35:28  0.00B 定义构建参数
ARG INSTALL_ARIA2=true
                        
# 2025-06-23 17:35:28  0.00B 定义构建参数
ARG INSTALL_FFMPEG=true
                        
# 2025-06-23 17:35:28  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:76a900b1000ea94af077159284367296a920b7ea042be373e0b24cf23ade0305",
    "RepoTags": [
        "ghcr.io/openlistteam/openlist-git:v4.0.2-aio",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/openlistteam/openlist-git:v4.0.2-aio"
    ],
    "RepoDigests": [
        "ghcr.io/openlistteam/openlist-git@sha256:0b608e8c2b4d51a447033b1fa9dfef41363e0157148c79eec521215a855a7fe4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/openlistteam/openlist-git@sha256:15a2dcfec43c3052e90a0477daa268463ff0178280d67ab2327e79a6ec7f4703"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-06-23T09:35:48.685065859Z",
    "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=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-06-23T09:35:26.107Z",
            "org.opencontainers.image.description": "A new AList Fork to Anti Trust Crisis",
            "org.opencontainers.image.licenses": "AGPL-3.0",
            "org.opencontainers.image.revision": "49213c1321fd39af02f267317fe0f6ebd2b4e2ac",
            "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.2-aio"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 270482855,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/5c418c80c50648eb5e35dddda3fb73b6cd0885001e9126a22ca27cbeccc0b104/diff:/var/lib/docker/overlay2/fef10835a2b74364ba01d697ebd79b1b6597b751c595ccdfb5b054dc3877eece/diff:/var/lib/docker/overlay2/2f38ab31b49494a47e1e0b7c162a55fe922ef75222d6bb344050ff70db0b2067/diff:/var/lib/docker/overlay2/914b80c92b8032878be009b955ad515657e67382a9285da0840063d2f3174459/diff:/var/lib/docker/overlay2/ac8202200182be4cdd6be11a2e0f2becfb620fa4e27c39959ca1dd440fcb44ca/diff",
            "MergedDir": "/var/lib/docker/overlay2/0ab7b68182536fb549fd1ac402ad3f6c6e725a16f375434dd90c0ee913bc3aae/merged",
            "UpperDir": "/var/lib/docker/overlay2/0ab7b68182536fb549fd1ac402ad3f6c6e725a16f375434dd90c0ee913bc3aae/diff",
            "WorkDir": "/var/lib/docker/overlay2/0ab7b68182536fb549fd1ac402ad3f6c6e725a16f375434dd90c0ee913bc3aae/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e21721183b10fa6d84b263043a2e6a3f972aab36fcbdb9640aeeb21044a8c8c1",
            "sha256:1f910e6563176998cb6e2f37b2e6bd6760491d6b478d4568550b60fa133f3fe2",
            "sha256:bd811520ef5c0c493e7c2b1a8b54f2b8fc8929191667e54ed68f04517ff6ef67",
            "sha256:01293d698afb87c34431e0f74c194178163359f11025ceefa1adc397455b714f",
            "sha256:ac45e5e0deeffa7fcf7912250b98cfe8687853b2e040f5fb1cccb263baeb1414",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-06-24T15:38:39.740037969+08:00"
    }
}

更多版本

ghcr.io/openlistteam/openlist-git:v4.0.2-aio

linux/amd64 ghcr.io270.48MB2025-06-24 15:38
259

ghcr.io/openlistteam/openlist-git:v4.1.4

linux/arm64 ghcr.io155.46MB2025-10-08 16:35
134