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

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

13
浏览次数
96.17MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless
源镜像
docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless
镜像ID
sha256:90335be258aa5fbe7d6dc68af50d01ccfd497e928029dd50990146a7f26f5a2b
镜像 TAG
0.6.1-serverless
镜像大小
96.17MB
平台架构
linux/amd64
镜像源
docker.io
CMD
启动入口
/app/main
工作目录
/app
OS/平台
linux/amd64
镜像创建
2026-05-18T04:04:38.776720228Z
同步时间
2026-07-24 11:57
浏览量
13 次
贡献者
⚙️ 环境变量 4
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
PLATFORM=serverless 1
GIN_MODE=release 2
TZ=UTC 3
🛡️ 镜像安全扫描
alpine 3.23.4 Trivy 2026-07-24 11:57 查看完整报告
21
低危 LOW
24
中危 MEDIUM
24
高危 HIGH
0
严重 CRITICAL
受影响目标 (2)
docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless (alpine 3.23.4) alpine app/main gobinary

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

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.1-serverless && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless  docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless'

镜像构建历史


# 2026-05-18 12:04:38  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/app/main"]
                        
# 2026-05-18 12:04:38  0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "[\"./main\", \"health\"] || exit 1"] "30s" "3s" "5s" "0s" '\x03'}
                        
# 2026-05-18 12:04:38  0.00B 指定运行容器时使用的用户
USER appuser
                        
# 2026-05-18 12:04:38  83.82MB 复制新文件或目录到容器中
COPY --chown=appuser:appgroup /app/main /app/main # buildkit
                        
# 2026-05-18 12:04:38  0.00B 设置环境变量 TZ
ENV TZ=UTC
                        
# 2026-05-18 12:04:38  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2026-05-18 12:04:38  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=serverless
                        
# 2026-05-18 12:04:38  0.00B 定义构建参数
ARG PLATFORM=serverless
                        
# 2026-05-18 12:03:49  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir -p /app/api/storage &&     chown -R appuser:appgroup /app &&     chmod -R 755 /app # buildkit
                        
# 2026-05-18 12:03:49  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2026-05-18 12:03:49  3.06KB 执行命令并创建新的镜像层
RUN /bin/sh -c addgroup -g 1000 appgroup &&     adduser -D -u 1000 -G appgroup appuser # buildkit
                        
# 2026-05-18 12:03:49  3.89MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache ca-certificates tzdata &&     apk add --upgrade --force-refresh busybox # buildkit
                        
# 2026-04-16 04:01:40  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-04-16 04:01:40  8.45MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.4-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:90335be258aa5fbe7d6dc68af50d01ccfd497e928029dd50990146a7f26f5a2b",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.6.1-serverless",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.6.1-serverless"
    ],
    "RepoDigests": [
        "langgenius/dify-plugin-daemon@sha256:5b953e3017205f38c2377410b877b85791d3851f6f730ba38419377b888d9296",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:041a214ce0d2707405a6ebe0c1fac271017a5e5db097b804bbebc273ab3f2229"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-05-18T04:04:38.776720228Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "appuser",
        "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",
            "PLATFORM=serverless",
            "GIN_MODE=release",
            "TZ=UTC"
        ],
        "Cmd": null,
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "[\"./main\", \"health\"] || exit 1"
            ],
            "Interval": 30000000000,
            "Timeout": 3000000000,
            "StartPeriod": 5000000000,
            "Retries": 3
        },
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/app",
        "Entrypoint": [
            "/app/main"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 96166502,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/0a21d75de50fbc1acf897c49d22c68a0ca52cdaf523e6c98ce0d043c15fec86c/diff:/var/lib/docker/overlay2/b2fd670a97b251ba6458df53bb18d81da4325845589fb59da828618cdda9a570/diff:/var/lib/docker/overlay2/de9bd295e9dc3e483e3c82670f006a1c5a09e1203de7813cf36507edac4fdd7f/diff:/var/lib/docker/overlay2/f8a8cf9804e419a8dec4414ce8788ff9daf8f66e9dc7a6a7efef51a5685d21e8/diff:/var/lib/docker/overlay2/bd1cf78885cf3b9d31005fc12e15825eaab2f213475e21ca5b9d49621961e4de/diff",
            "MergedDir": "/var/lib/docker/overlay2/f9edaae67c87910ec99f64a061e59e709622e10612b7eb449070baf25affcd3e/merged",
            "UpperDir": "/var/lib/docker/overlay2/f9edaae67c87910ec99f64a061e59e709622e10612b7eb449070baf25affcd3e/diff",
            "WorkDir": "/var/lib/docker/overlay2/f9edaae67c87910ec99f64a061e59e709622e10612b7eb449070baf25affcd3e/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:29df493baa13de438d6d2ece3a8333032e0b7b9b9d8cce4ee82194da255f61e1",
            "sha256:e25384524932c65343e1914a5a91be1a5d3531be714beb6efb3118d9bd8bf27f",
            "sha256:34e0803a977ce81d85bca4dd116c0647420cfc1a6b77623d7fedd6fa609527c4",
            "sha256:a0dd5688b9a241a5054dc35cb33055f6088f41b6363d8d97aeb586108def55dd",
            "sha256:3112c0fa6d6e88caa0e603a12d41e91bfec945d2f42e10a172d6d4618f9661c4",
            "sha256:287ae5005ce3f0013ff79af53a2ea3a47308f233ad9d4f71371b18aa61c8a3af"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-24T11:57:23.294317118+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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