docker.io/langgenius/dify-plugin-daemon:0.0.7-local linux/arm64

docker.io/langgenius/dify-plugin-daemon:0.0.7-local - 国内下载镜像源 浏览次数:62 安全受验证的发布者-Dify 温馨提示: 这是一个 linux/arm64 系统架构镜像
```html

该Docker镜像 docker.io/langgenius/dify-plugin-daemon 是一个用于Diffy插件守护进程的镜像。 Diffy可能是一个代码分析或代码比较工具,而这个守护进程负责在后台运行Diffy插件,处理相关的任务和请求。

```
源镜像 docker.io/langgenius/dify-plugin-daemon:0.0.7-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64
镜像ID sha256:8a9a95b7f8d24ad92eae6a010dfc2d2621d84f0fab78f0b771e88b3b7e06909e
镜像TAG 0.0.7-local-linuxarm64
大小 1.26GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/entrypoint.sh
启动入口
工作目录 /app
OS/平台 linux/arm64
浏览量 62 次
贡献者
镜像创建 2025-04-09T06:44:30.24551684Z
同步时间 2025-04-09 22:29
更新时间 2025-04-18 11:34
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin TIKTOKEN_CACHE_DIR=/app/.tiktoken PLATFORM=local GIN_MODE=release
镜像标签
ubuntu: org.opencontainers.image.ref.name 24.04: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.0.7-local

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.0.7-local

Shell快速替换命令

sed -i 's#langgenius/dify-plugin-daemon:0.0.7-local#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.0.7-local'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.0.7-local'

镜像构建历史


# 2025-04-09 14:44:30  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/entrypoint.sh"]
                        
# 2025-04-09 14:44:30  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2025-04-09 14:44:30  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2025-04-09 14:44:30  133.45MB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c mv /usr/lib/python3.12/EXTERNALLY-MANAGED /usr/lib/python3.12/EXTERNALLY-MANAGED.bk     && python3 -m pip install uv     && uv pip install --system dify_plugin     && python3 -c "from uv._find_uv import find_uv_bin;print(find_uv_bin());"     && python3 -c "import tiktoken; encodings = ['o200k_base', 'cl100k_base', 'p50k_base', 'r50k_base', 'p50k_edit', 'gpt2']; [tiktoken.get_encoding(encoding).special_tokens_set for encoding in encodings]" # buildkit
                        
# 2025-04-09 14:44:24  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2025-04-09 14:44:24  972.19MB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl python3.12 python3.12-venv python3.12-dev python3-pip ffmpeg build-essential     && apt-get clean     && rm -rf /var/lib/apt/lists/*     && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1; # buildkit
                        
# 2025-04-09 14:44:24  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2025-04-09 14:43:11  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-04-09 14:43:11  24.00B 复制新文件或目录到容器中
COPY /app/entrypoint.sh /app/entrypoint.sh # buildkit
                        
# 2025-04-09 14:43:11  49.24MB 复制新文件或目录到容器中
COPY /app/main /app/main # buildkit
                        
# 2025-04-08 18:46:13  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-04-08 18:46:12  100.64MB 
/bin/sh -c #(nop) ADD file:918b7712da52a62e47b028978dd5fc952b2f7f7f0507ea2362c4ccd14120133c in / 
                        
# 2025-04-08 18:46:09  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-04-08 18:46:09  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-04-08 18:46:09  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-04-08 18:46:09  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:8a9a95b7f8d24ad92eae6a010dfc2d2621d84f0fab78f0b771e88b3b7e06909e",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.0.7-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.7-local-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:d194e81bc4300140c0a6e8b647d82d153be24fec2827a411811f1db88d1f2d8e"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-04-09T06:44:30.24551684Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "TIKTOKEN_CACHE_DIR=/app/.tiktoken",
            "PLATFORM=local",
            "GIN_MODE=release"
        ],
        "Cmd": [
            "/bin/bash",
            "-c",
            "/app/entrypoint.sh"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": null,
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.ref.name": "ubuntu",
            "org.opencontainers.image.version": "24.04"
        }
    },
    "Architecture": "arm64",
    "Variant": "v8",
    "Os": "linux",
    "Size": 1255517735,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ff919cece2fc1f47638b64a90b00d80adec45676fbfb721dc6d0866d9c471541/diff:/var/lib/docker/overlay2/ed9dbb921b04b2beeb663cb7a44f6fcdeb67df410ef1dc06b5ba0470e65a7741/diff:/var/lib/docker/overlay2/2aa85dde63e7cf9104d1232fa688e7d69bb4ad212ac146f3a87bb3cb5f4bbf81/diff:/var/lib/docker/overlay2/2435ae802700f2e1ecb6edb9ac950681b8ec5ee3a43bbf3214335cb0563df361/diff:/var/lib/docker/overlay2/1b87bba8e4ad5f27692f8ad7e90bdf0c5117bb871497042335545da5b692b574/diff",
            "MergedDir": "/var/lib/docker/overlay2/1b8829762cfa22b482a37494595970e8df803a69c7331bc372265417b7576250/merged",
            "UpperDir": "/var/lib/docker/overlay2/1b8829762cfa22b482a37494595970e8df803a69c7331bc372265417b7576250/diff",
            "WorkDir": "/var/lib/docker/overlay2/1b8829762cfa22b482a37494595970e8df803a69c7331bc372265417b7576250/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e03f520a17abd5b8603b7187bb5aec0eafe8972faf801eab0687f08c516d28e3",
            "sha256:fbcac31eedd764c7602ea1f48b0546728567b97af56077663b4b1dd8948db04c",
            "sha256:6cfd252b0b6d3788429d121e3faa1baee66434cec3af1698cc5dc5f310563ed7",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:ca1d42c02ff23201e74c00c83d0b2d2851f82fd7d561ed2bc35c6d1280a14ad2",
            "sha256:6f4e087f49b890d8d3f36812ce777259038db9213ae8596fafa6c91af16fc27f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-04-09T22:27:58.928400427+08:00"
    }
}

更多版本

docker.io/langgenius/dify-plugin-daemon:0.0.1-local

linux/amd64 docker.io247.43MB2025-01-10 09:40
372

docker.io/langgenius/dify-plugin-daemon:0.0.2-local

linux/amd64 docker.io901.91MB2025-02-20 11:35
278

docker.io/langgenius/dify-plugin-daemon:0.0.2-local

linux/arm64 docker.io849.80MB2025-02-21 11:53
219

docker.io/langgenius/dify-plugin-daemon:0.0.3-local

linux/amd64 docker.io908.79MB2025-02-28 15:43
486

docker.io/langgenius/dify-plugin-daemon:0.0.3-local

linux/arm64 docker.io856.06MB2025-03-01 14:30
224

docker.io/langgenius/dify-plugin-daemon:0.0.4-local

linux/amd64 docker.io1.35GB2025-03-11 23:22
276

docker.io/langgenius/dify-plugin-daemon:0.0.5-local

linux/amd64 docker.io1.35GB2025-03-19 09:31
216

docker.io/langgenius/dify-plugin-daemon:0.0.6-local

linux/amd64 docker.io1.36GB2025-03-20 23:36
367

docker.io/langgenius/dify-plugin-daemon:0.0.6-local

linux/arm64 docker.io1.28GB2025-03-21 09:35
160

docker.io/langgenius/dify-plugin-daemon:0.0.7-local

linux/amd64 docker.io1.34GB2025-04-09 20:28
263

docker.io/langgenius/dify-plugin-daemon:0.0.7-local

linux/arm64 docker.io1.26GB2025-04-09 22:29
61