广告图片

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

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

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

源镜像 docker.io/langgenius/dify-plugin-daemon:0.6.0-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.0-local-linuxarm64
镜像ID sha256:b8ad990d372cfe6ab09d2be793c12dcf11cefba076340c98f2b7039d444ff68a
镜像TAG 0.6.0-local-linuxarm64
大小 1.56GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/commandline migrate && exec /app/main
启动入口 /usr/bin/tini -g --
工作目录 /app
OS/平台 linux/arm64
浏览量 32 次
贡献者
镜像创建 2026-04-24T07:48:24.135852175Z
同步时间 2026-04-29 14:57
环境变量
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
镜像标签
24.04: org.opencontainers.image.version

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2026-04-24 15:48:24  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/commandline migrate && exec /app/main"]
                        
# 2026-04-24 15:48:24  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/usr/bin/tini" "-g" "--"]
                        
# 2026-04-24 15:48:24  157.73MB 复制新文件或目录到容器中
COPY /app/main /app/commandline /app/ # buildkit
                        
# 2026-04-24 15:47:32  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2026-04-24 15:47:32  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2026-04-24 15:47:32  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2026-04-24 15:47:32  150.12MB 执行命令并创建新的镜像层
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-04-24 15:47:26  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2026-04-24 15:47:26  1.15GB 执行命令并创建新的镜像层
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-04-24 15:47:26  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2026-04-24 15:46:02  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-04-10 14:56:54  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2026-04-10 14:56:54  100.72MB 
/bin/sh -c #(nop) ADD file:c98b7645109cdf61ab97492b90629581b1b7cb925b9d58a5787a4aaeb719f2be in / 
                        
# 2026-04-10 14:56:52  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2026-04-10 14:56:52  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2026-04-10 14:56:52  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:b8ad990d372cfe6ab09d2be793c12dcf11cefba076340c98f2b7039d444ff68a",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.6.0-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.0-local-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:a0980b8ee3f3b6f577a3ca2348fafe7d360be4922bd6a220109c5e56d96626f9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-24T07:48:24.135852175Z",
    "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": "arm64",
    "Os": "linux",
    "Size": 1561091917,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/4e817bd29ef44f4fafa3e667a98b7c969e2c1d0533cfa559e4a4a6acd033c853/diff:/var/lib/docker/overlay2/f6e3f1022a6840f85a26c5621499259eba1ce66ff22edf98bfbd0d22a342c3e8/diff:/var/lib/docker/overlay2/98fa9618a7b56bba44ef9eb318fb775e06da34b6d38e2460a6b6693d74e4350a/diff:/var/lib/docker/overlay2/a750a6497f61f977636028dfb72bf6658b87ff755de7daeaa4dde7a7ba511935/diff",
            "MergedDir": "/var/lib/docker/overlay2/e4b39f0f8e524f746b64d4c4a4a4bab21a30c5e6e51535e3f2c3ae9bec1e6475/merged",
            "UpperDir": "/var/lib/docker/overlay2/e4b39f0f8e524f746b64d4c4a4a4bab21a30c5e6e51535e3f2c3ae9bec1e6475/diff",
            "WorkDir": "/var/lib/docker/overlay2/e4b39f0f8e524f746b64d4c4a4a4bab21a30c5e6e51535e3f2c3ae9bec1e6475/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:d9a56420aee7ff835e0c05fc666d1237d40f0da5fe338738e651b01db4672a5d",
            "sha256:73d8a0e7c02d8ee8a51f21225f4b8b1da44a13e6a0facd058b309c8e62dabf1e",
            "sha256:85eb487f12f143d3b42e544ea75da57ec1ff8dbf98d43926ea7c3962d02a4edf",
            "sha256:9d7b8aab6d4e76d17fa352f45079699a04af0b090a86cd6d61a3ad4b12f44d64",
            "sha256:38e2db3bc98cfc98b792a76e23bfc7fb60ca9daa438d48b2997443c1e98628f2"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-29T14:56:10.671338765+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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