logo
docker.io/langgenius/dify-plugin-daemon:0.6.3-local
linux/amd64 docker.io 已验证 · Dify

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

124
浏览次数
1.62GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.3-local
源镜像
docker.io/langgenius/dify-plugin-daemon:0.6.3-local
镜像ID
sha256:7837b8d62dea565822b6f87bcf22d12ca5a54fcd4666880b1d8dd2152b3b2cf0
镜像 TAG
0.6.3-local
镜像大小
1.62GB
平台架构
linux/amd64
镜像源
docker.io
CMD
/bin/bash -c /app/commandline migrate && exec /app/main
启动入口
/usr/bin/tini -g --
工作目录
/app
OS/平台
linux/amd64
镜像创建
2026-06-25T07:42:26.164841751Z
同步时间
2026-06-29 09:32
浏览量
124 次
贡献者
⚙️ 环境变量 5
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
TIKTOKEN_CACHE_DIR=/app/.tiktoken 1
UV_PATH=/usr/local/bin/uv 2
PLATFORM=local 3
GIN_MODE=release 4
🏷️ 镜像标签 1
KeyValue
24.04 org.opencontainers.image.version
🛡️ 镜像安全扫描
ubuntu 24.04 Trivy 2026-06-29 09:32 查看完整报告
158
低危 LOW
2213
中危 MEDIUM
45
高危 HIGH
11
严重 CRITICAL
受影响目标 (6)
docker.io/langgenius/dify-plugin-daemon:0.6.3-local (ubuntu 24.04) ubuntu Python python-pkg app/commandline gobinary app/main gobinary usr/local/bin/uv rustbinary usr/local/bin/uvx rustbinary

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2026-06-25 15:42:26  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/commandline migrate && exec /app/main"]
                        
# 2026-06-25 15:42:26  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/bin/tini" "-g" "--"]
                        
# 2026-06-25 15:42:26  174.18MB 复制新文件或目录到容器中
COPY /app/main /app/commandline /app/ # buildkit
                        
# 2026-06-25 15:42:25  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2026-06-25 15:42:25  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2026-06-25 15:42:25  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2026-06-25 15:42:25  160.57MB 执行命令并创建新的镜像层
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
                        
# 2026-06-25 15:42:21  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2026-06-25 15:42:21  1.20GB 执行命令并创建新的镜像层
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 \
    tini

apt-get clean
rm -rf /var/lib/apt/lists/*
update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1;
EOF # buildkit
                        
# 2026-06-25 15:42:21  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2026-06-25 15:41:15  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-05-20 09:37:22  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2026-05-20 09:37:21  78.14MB 
/bin/sh -c #(nop) ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in / 
                        
# 2026-05-20 09:37:19  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2026-05-20 09:37:19  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2026-05-20 09:37:19  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:7837b8d62dea565822b6f87bcf22d12ca5a54fcd4666880b1d8dd2152b3b2cf0",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.6.3-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.3-local"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:26a4d3e8274447b5b1efb927c1a4e47deebb88a8dc54a86c85a981b17cd7a856"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-06-25T07:42:26.164841751Z",
    "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/commandline migrate \u0026\u0026 exec /app/main"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": [
            "/usr/bin/tini",
            "-g",
            "--"
        ],
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.version": "24.04"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1616269255,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/67f2ead82e3a25966b0c7e867a22bac512f1a5759d0fa058c080c52e335616cb/diff:/var/lib/docker/overlay2/b234d3b973d108f75d1923c587451c74f2ac4b6fa2c1a066b9a13382b0b06a37/diff:/var/lib/docker/overlay2/005311bcdc703ab4687e75f2961be4d50e15b1554812ad13d82cf502e46b0dfd/diff:/var/lib/docker/overlay2/f0ea6ebd968a5fffdb727910a901a5931eaab5dad30613985d1936eea124b60b/diff",
            "MergedDir": "/var/lib/docker/overlay2/4831c3e5bf0bef5a18f6376092426213130292f7e431021f18aa136d4a6558e1/merged",
            "UpperDir": "/var/lib/docker/overlay2/4831c3e5bf0bef5a18f6376092426213130292f7e431021f18aa136d4a6558e1/diff",
            "WorkDir": "/var/lib/docker/overlay2/4831c3e5bf0bef5a18f6376092426213130292f7e431021f18aa136d4a6558e1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:98effb2dfe85d4c431f97d90482075f19e5fc3a57c2dd423d8bdfd4813620043",
            "sha256:61c423c25b23aae08dc914c0310b99be22fe89715e2c8aee4ed8d5f40c278e6d",
            "sha256:9498804786445a0aa281af60b664d1bc2fadfa4d61a0eeabfd5dadf79ba201c5",
            "sha256:53d893de76488a353b6eae22ba6822c442f93651633c73563676c7ba43672cde",
            "sha256:2b1dd8cc2b5f0f51519262de4cc647a462e0d846263d307f5b8f6f8b588ad333"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-06-29T09:30:51.11319789+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

linux/arm64 docker.io1.44GB2026-01-16 14:15
351

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

linux/amd64 docker.io1.49GB2026-01-21 13:47
886

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

linux/arm64 docker.io1.43GB2026-02-11 19:53
432

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

linux/amd64 docker.io1.54GB2026-03-17 17:43
405

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

linux/arm64 docker.io1.52GB2026-04-14 14:41
171

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

linux/amd64 docker.io1.54GB2026-04-15 14:31
227

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

linux/amd64 docker.io1.60GB2026-04-23 10:46
209

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

linux/arm64 docker.io1.52GB2026-04-28 19:28
108

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

linux/amd64 docker.io1.59GB2026-04-28 23:39
328

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

linux/arm64 docker.io1.56GB2026-04-29 14:57
185

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

linux/amd64 docker.io1.59GB2026-04-30 17:16
236

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

linux/amd64 docker.io1.61GB2026-05-18 14:59
400

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

linux/arm64 docker.io1.58GB2026-06-26 08:42
89

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

linux/amd64 docker.io1.62GB2026-06-29 09:32
123
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×