docker.io/langgenius/dify-plugin-daemon:0.0.9-local linux/amd64

docker.io/langgenius/dify-plugin-daemon:0.0.9-local - 国内下载镜像源 浏览次数:8 安全受验证的发布者-Dify
```html

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

```
源镜像 docker.io/langgenius/dify-plugin-daemon:0.0.9-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local
镜像ID sha256:849ceee1fb0db4e605e9a3a9c4ede26f8b088b6c808ad4180f8c3576213464ba
镜像TAG 0.0.9-local
大小 1.35GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/entrypoint.sh
启动入口
工作目录 /app
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2025-04-24T06:00:54.164568653Z
同步时间 2025-04-24 16:31
更新时间 2025-04-24 23:17
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin TIKTOKEN_CACHE_DIR=/app/.tiktoken UV_PATH=/usr/local/bin/uv 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.9-local
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local  docker.io/langgenius/dify-plugin-daemon:0.0.9-local

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#langgenius/dify-plugin-daemon:0.0.9-local#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local#' 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.9-local && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local  docker.io/langgenius/dify-plugin-daemon:0.0.9-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.9-local && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local  docker.io/langgenius/dify-plugin-daemon:0.0.9-local'

镜像构建历史


# 2025-04-24 14:00:54  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/entrypoint.sh"]
                        
# 2025-04-24 14:00:54  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2025-04-24 14:00:54  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2025-04-24 14:00:54  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2025-04-24 14:00:54  147.84MB 执行命令并创建新的镜像层
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-24 14:00:48  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2025-04-24 14:00:48  1.07GB 执行命令并创建新的镜像层
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-24 14:00:48  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2025-04-24 13:59:50  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-04-24 13:59:50  24.00B 复制新文件或目录到容器中
COPY /app/entrypoint.sh /app/entrypoint.sh # buildkit
                        
# 2025-04-24 13:59:50  51.72MB 复制新文件或目录到容器中
COPY /app/main /app/main # buildkit
                        
# 2025-04-08 18:43:15  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-04-08 18:43:14  78.10MB 
/bin/sh -c #(nop) ADD file:1d7c45546e94b90e941c5bf5c7a5d415d7b868581ad96171d4beb76caa8ab683 in / 
                        
# 2025-04-08 18:43:12  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-04-08 18:43:12  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-04-08 18:43:12  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-04-08 18:43:12  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:849ceee1fb0db4e605e9a3a9c4ede26f8b088b6c808ad4180f8c3576213464ba",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.0.9-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.0.9-local"
    ],
    "RepoDigests": [
        "langgenius/dify-plugin-daemon@sha256:0162d476f5c5641dc67865e9b76c4dab826feca92ce7c6f9fc084a4ea9f6310a",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:8c6d7ecf54748d8de312b2d0a555a1bd6b5a4c2c16f8741fe787759e5ce9a870"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-04-24T06:00:54.164568653Z",
    "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",
            "UV_PATH=/usr/local/bin/uv",
            "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": "amd64",
    "Os": "linux",
    "Size": 1347517253,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/13618fe4ecded5e4bbbfa0384cbeb0df9d3686cccee6a42c47ec56c447aa38f5/diff:/var/lib/docker/overlay2/41ab86ebffb675f586d96cee70a2df89a671280b5978d5c2065a5477ec0a46d9/diff:/var/lib/docker/overlay2/13e16283a3f79cf867ede41d3d7ed37c45f447be126f6584324c1a534d3b0f78/diff:/var/lib/docker/overlay2/159f7367fd5638b5b55c93353360f7595257df5479252c7d7566ebd266e3542d/diff:/var/lib/docker/overlay2/697096b4c822b101843182ff505291800d91c80f1ac5c99f2b9cab5e17ecccf2/diff",
            "MergedDir": "/var/lib/docker/overlay2/b4be1b8f6dc816b33e08f0f371546cef43f234e034b664ea66bd3fab30951de3/merged",
            "UpperDir": "/var/lib/docker/overlay2/b4be1b8f6dc816b33e08f0f371546cef43f234e034b664ea66bd3fab30951de3/diff",
            "WorkDir": "/var/lib/docker/overlay2/b4be1b8f6dc816b33e08f0f371546cef43f234e034b664ea66bd3fab30951de3/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:3abdd8a5e7a8909e1509f1d36dcc8b85a0f95c68a69e6d86c6e9e3c1059d44b3",
            "sha256:f160613076a17022879fcd2d91b8a19b312dca9e8a0bd947e746ce8bc04666b3",
            "sha256:597c2d3a8ce0900c71cf92bc5aabbba40ff7d3403c9c1b71360d58107bad7130",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:ba0707939c207b8919ea0b943538732b3f58614ae3f57c7b5c0c5a791b173c23",
            "sha256:5da15556142711e5f5c4f1651ffe0e5ffe311712cc96a3a1264b092c02f01758"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-04-24T16:30:05.986715444+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

linux/amd64 docker.io1.35GB2025-04-23 17:56
23

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

linux/amd64 docker.io1.35GB2025-04-24 16:31
7