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

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

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

源镜像 docker.io/langgenius/dify-plugin-daemon:0.5.2-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.2-local
镜像ID sha256:3945c187009ac8d717a4401cb9c148206a741c6c56f81f5d9dc6e8f5f8662b9b
镜像TAG 0.5.2-local
大小 1.49GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/entrypoint.sh
启动入口
工作目录 /app
OS/平台 linux/amd64
浏览量 18 次
贡献者 li***4@lenovo.com
镜像创建 2025-12-22T10:46:25.170345639Z
同步时间 2025-12-23 10:32
更新时间 2025-12-23 23:45
环境变量
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.5.2-local
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.2-local  docker.io/langgenius/dify-plugin-daemon:0.5.2-local

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2025-12-22 18:46:25  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/entrypoint.sh"]
                        
# 2025-12-22 18:46:25  90.73MB 复制新文件或目录到容器中
COPY /app/main /app/entrypoint.sh /app/ # buildkit
                        
# 2025-12-22 18:46:22  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2025-12-22 18:46:22  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2025-12-22 18:46:22  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2025-12-22 18:46:22  149.79MB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c <<EOF bash

set -ex
set -o pipefail
trap 'echo "Exit status $? at line $LINENO from: $BASH_COMMAND"' ERR

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]"
EOF # buildkit
                        
# 2025-12-22 18:46:17  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2025-12-22 18:46:17  1.18GB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c <<EOF bash

set -ex
set -o pipefail
trap 'echo "Exit status $? at line $LINENO from: $BASH_COMMAND"' ERR

apt-get update

DEBIAN_FRONTEND=noninteractive apt-get install -y curl python3.12 \
    python3.12-venv python3.12-dev python3-pip ffmpeg \
    build-essential git \
    cmake pkg-config \
    libcairo2-dev libjpeg-dev libgif-dev

apt-get clean
rm -rf /var/lib/apt/lists/*
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1;
EOF # buildkit
                        
# 2025-12-22 18:46:17  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2025-12-22 18:45:03  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-10-17 03:23:03  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-10-17 03:23:03  78.12MB 
/bin/sh -c #(nop) ADD file:ddf1aa62235de6657123492b19d27d937c25668011b5ebf923a3f019200f8540 in / 
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-10-17 03:23:01  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:3945c187009ac8d717a4401cb9c148206a741c6c56f81f5d9dc6e8f5f8662b9b",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.5.2-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.2-local"
    ],
    "RepoDigests": [
        "langgenius/dify-plugin-daemon@sha256:a256413a9ac9db750aa461b0f6269dceb2f64282365649b4b59498fbc7c2ca39",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:c0acafbe78fd1fc73b1d15b928b93f6e023fd86ee4ce14b858be9796e2317e2b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-22T10:46:25.170345639Z",
    "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": 1493670612,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/e3fc9a1d6dbe192606a62aef2a54a3e3b8aa9522ccc4ff15113d8bb4abf042f7/diff:/var/lib/docker/overlay2/5c98bfc19596891801fba7b1945e8b001afaa7a84fb915b6ea3e27fbf5dfc1e0/diff:/var/lib/docker/overlay2/a63d9d366bb228e5488a715c0e172183062858601767a1f4d33c173a455664bb/diff:/var/lib/docker/overlay2/eb70712178461cb65c5a956187c966c31d60ac41eacf62af98ead2c9415d1d0a/diff",
            "MergedDir": "/var/lib/docker/overlay2/814ed9e321bce99e799bc67a8062868dca8888aa2dd42aa627b6e71f302a03c9/merged",
            "UpperDir": "/var/lib/docker/overlay2/814ed9e321bce99e799bc67a8062868dca8888aa2dd42aa627b6e71f302a03c9/diff",
            "WorkDir": "/var/lib/docker/overlay2/814ed9e321bce99e799bc67a8062868dca8888aa2dd42aa627b6e71f302a03c9/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:e8bce0aabd687e9ee90e0bada33884f40b277196f72aac9934357472863a80ae",
            "sha256:a600d7f694a5e872fe62df743975e71aaec0adf80bd0c153f4567b61460ec9f1",
            "sha256:51fc320495d258cbcf2c46dd60b66366d9a249ab38656378c5fc51b6244feee8",
            "sha256:86f30e8cb7bebf0753668e14b6aa0f51265c4ebbea28055e7b2c6aedde607628",
            "sha256:dca0e94d742e07ed171c1f831037b60942d032c937b3076c492b1516489d1e1e"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-23T10:30:55.937423015+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

linux/amd64 docker.io1.37GB2025-05-15 19:32
448

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

linux/arm64 docker.io1.29GB2025-05-27 15:03
232

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

linux/amd64 docker.io1.37GB2025-05-27 17:07
491

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

linux/arm64 docker.io1.29GB2025-06-03 17:59
280

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

linux/amd64 docker.io1.38GB2025-06-11 17:49
1080

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

linux/arm64 docker.io1.27GB2025-06-18 21:45
247

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

linux/amd64 docker.io1.37GB2025-07-03 19:25
626

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

linux/arm64 docker.io1.29GB2025-07-13 15:42
349

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

linux/amd64 docker.io1.37GB2025-07-24 11:02
1249

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

linux/arm64 docker.io1.29GB2025-07-24 11:11
423

docker.io/langgenius/dify-plugin-daemon:0.1.3-serverless

linux/amd64 docker.io97.41MB2025-08-01 10:34
251

docker.io/langgenius/dify-plugin-daemon:0.3.0b1-local

linux/amd64 docker.io1.36GB2025-09-05 02:12
411

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

linux/amd64 docker.io1.38GB2025-09-23 09:44
362

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

linux/arm64 docker.io1.28GB2025-09-23 09:55
166

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

linux/arm64 docker.io1.33GB2025-09-25 09:21
322

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

linux/amd64 docker.io1.49GB2025-10-23 10:15
333

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

linux/arm64 docker.io1.43GB2025-10-23 10:19
261

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

linux/amd64 docker.io1.49GB2025-11-06 08:18
159

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

linux/amd64 docker.io1.48GB2025-11-14 22:49
434

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

linux/arm64 docker.io1.44GB2025-11-27 15:01
162

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

linux/amd64 docker.io1.49GB2025-12-11 10:42
215

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

linux/amd64 docker.io1.49GB2025-12-23 10:32
17