logo
docker.io/langgenius/dify-plugin-daemon:0.3.3-local
linux/arm64 docker.io 已验证 · Dify 请确认架构匹配

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

590
浏览次数
1.43GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.3.3-local-linuxarm64
源镜像
docker.io/langgenius/dify-plugin-daemon:0.3.3-local
镜像ID
sha256:d8f970adeae5f1829ec923514a9a2f8f0d039f3bb4e9b5e9043abcb43eb0c6cf
镜像 TAG
0.3.3-local-linuxarm64
镜像大小
1.43GB
平台架构
linux/arm64
镜像源
docker.io
CMD
/bin/bash -c /app/entrypoint.sh
启动入口
工作目录
/app
OS/平台
linux/arm64
镜像创建
2025-10-21T11:00:00.141362667Z
同步时间
2025-10-23 10:19
浏览量
590 次
贡献者
⚙️ 环境变量 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
🏷️ 镜像标签 2
KeyValue
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.3.3-local-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.3.3-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.3.3-local

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2025-10-21 19:00:00  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/entrypoint.sh"]
                        
# 2025-10-21 19:00:00  86.17MB 复制新文件或目录到容器中
COPY /app/main /app/entrypoint.sh /app/ # buildkit
                        
# 2025-10-21 18:59:43  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2025-10-21 18:59:43  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2025-10-21 18:59:43  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2025-10-21 18:59:43  143.44MB 执行命令并创建新的镜像层
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-10-21 18:59:34  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2025-10-21 18:59:34  1.10GB 执行命令并创建新的镜像层
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-10-21 18:59:34  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2025-10-21 18:58:10  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-10-01 21:01:40  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-10-01 21:01:40  100.71MB 
/bin/sh -c #(nop) ADD file:d77dea5c49828eb0de89439d2b631bc8ea27cb9ef774412b56a060ba1673487b in / 
                        
# 2025-10-01 21:01:38  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-10-01 21:01:38  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-10-01 21:01:38  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-10-01 21:01:38  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:d8f970adeae5f1829ec923514a9a2f8f0d039f3bb4e9b5e9043abcb43eb0c6cf",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.3.3-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.3.3-local-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:15fff00227bc42c374f173ec4fceb5d1f223ecd8c6f276d8d7063626cc65ed8b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-10-21T11:00:00.141362667Z",
    "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": "arm64",
    "Os": "linux",
    "Size": 1432528283,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/1f5bf0a303895a8aad7e2a99c2dec4181f337e6c6aa30d73a04d3167b78ec757/diff:/var/lib/docker/overlay2/76d73f9eeea77248576ead85c4c12771c026aad598914c231a7417be580a7420/diff:/var/lib/docker/overlay2/132089250ae520f5b2d6bca91c791275e726efd1836c44ae1a9eddbf0b24a8ab/diff:/var/lib/docker/overlay2/a969c68215ba536c681410e4644d0a3d97123af8188c623d00cb18c46318f410/diff",
            "MergedDir": "/var/lib/docker/overlay2/9654d0613828970c17ebbe57c810c0693d0853d6d36bb9fd72a816ec2c0aa4f6/merged",
            "UpperDir": "/var/lib/docker/overlay2/9654d0613828970c17ebbe57c810c0693d0853d6d36bb9fd72a816ec2c0aa4f6/diff",
            "WorkDir": "/var/lib/docker/overlay2/9654d0613828970c17ebbe57c810c0693d0853d6d36bb9fd72a816ec2c0aa4f6/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ab34259f9ca5d315bec1b17d9f1ca272e84dedd964a8988695daf0ec3e0bbc2e",
            "sha256:dfed18d2a68d24777b4f3226968b61daf6fbe3cad1f15bcb6eae4804390327a1",
            "sha256:4c576ea579a3d83f2cd44f8d32f5460655050d5bce622f578a33bd560d1b57ed",
            "sha256:f6eed0fd0b338746817d657c7621d9dd0f5cf680347132f93b604623266cdcb5",
            "sha256:36a40de97b1a564c34de08d163130826e28d99b3802df16ca7e5f33a4dc23e3f"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-23T10:18:39.249617165+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

linux/amd64 docker.io1.62GB2026-06-29 09:32
189

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

linux/amd64 docker.io96.17MB2026-07-24 11:57
46
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×