广告图片

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

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

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

源镜像 docker.io/langgenius/dify-plugin-daemon:0.5.8-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.8-local
镜像ID sha256:7ec4efc48db01cfaf92f263ea3db86c1a4a82b9ac1f2a0514c08fe39be690a21
镜像TAG 0.5.8-local
大小 1.60GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/commandline migrate && exec /app/main
启动入口
工作目录 /app
OS/平台 linux/amd64
浏览量 34 次
贡献者
镜像创建 2026-04-15T11:49:02.122991364Z
同步时间 2026-04-23 10:46
环境变量
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.5.8-local
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.8-local  docker.io/langgenius/dify-plugin-daemon:0.5.8-local

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2026-04-15 19:49:02  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/commandline migrate && exec /app/main"]
                        
# 2026-04-15 19:49:02  167.55MB 复制新文件或目录到容器中
COPY /app/main /app/commandline /app/ # buildkit
                        
# 2026-04-15 19:48:23  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2026-04-15 19:48:23  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2026-04-15 19:48:23  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2026-04-15 19:48:23  158.85MB 执行命令并创建新的镜像层
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-15 19:48:14  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2026-04-15 19:48:14  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

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-15 19:48:14  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2026-04-15 19:47:05  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-04-03 23:16:43  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2026-04-03 23:16:42  78.14MB 
/bin/sh -c #(nop) ADD file:0f6466425c4f1800aae9224ddc3437b90c829cea58fb8edd5dde2f1eb0ee28da in / 
                        
# 2026-04-03 23:16:40  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2026-04-03 23:16:40  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2026-04-03 23:16:40  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:7ec4efc48db01cfaf92f263ea3db86c1a4a82b9ac1f2a0514c08fe39be690a21",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.5.8-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.5.8-local"
    ],
    "RepoDigests": [
        "langgenius/dify-plugin-daemon@sha256:c49454174b35af44ef36c3bba0cfda0947d869cc4d1826eb75716453b28744a4",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:931514ef506aa659ade8beb253ecf46e297f4c90327929a202b4ebb33ce81799"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-04-15T11:49:02.122991364Z",
    "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": null,
        "OnBuild": null,
        "Labels": {
            "org.opencontainers.image.version": "24.04"
        }
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 1599855821,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0614309888f1b06f16da2942456b0f53d03403667403e7d109ad8cc70ec95c72/diff:/var/lib/docker/overlay2/0e78af6edee3ce881b3e25137ccf95870f74ebfe3cf7ea9d5d129a80cd78b2f0/diff:/var/lib/docker/overlay2/3ad00b057ce3524dd48c102581115e1527bf960a14592b4fd5c281cb410ae85b/diff:/var/lib/docker/overlay2/b3767b4f35ad97ba9f427b642be4908f771d8242473f50f13d51606c0daad48d/diff",
            "MergedDir": "/var/lib/docker/overlay2/1e23eecf3b44a54b6a32c05772069ed30098effa9e5ec736b34febd535062fa1/merged",
            "UpperDir": "/var/lib/docker/overlay2/1e23eecf3b44a54b6a32c05772069ed30098effa9e5ec736b34febd535062fa1/diff",
            "WorkDir": "/var/lib/docker/overlay2/1e23eecf3b44a54b6a32c05772069ed30098effa9e5ec736b34febd535062fa1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:5e732af9e7c568c9b41ecabc76ac93a58471934d5155070dfd64a9567667fd9d",
            "sha256:da450cedd771a960f5851f6db4cfed6394424ee2ed76435af0be2d61707b2e82",
            "sha256:f9f2cba49ae809721f66b174c6e0083c39aa5b267bb046ec8b17bd9c60b8c421",
            "sha256:48fe3f1b9baebe930806786711fc89969c24f548c1bce51bd0a40bbdc997c7cc",
            "sha256:509b37d19c000d58a1032a0a0accb742358ca8e19d6ae90deae46dad082c49f3"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-23T10:45:02.589945135+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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