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

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

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

源镜像 docker.io/langgenius/dify-plugin-daemon:0.1.3-local
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.1.3-local-linuxarm64
镜像ID sha256:9a4912493da299beff3f212b056b5ac6980c089385489b27eed7aa6cc4ca065f
镜像TAG 0.1.3-local-linuxarm64
大小 1.29GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD /bin/bash -c /app/entrypoint.sh
启动入口
工作目录 /app
OS/平台 linux/arm64
浏览量 60 次
贡献者
镜像创建 2025-07-02T09:40:57.956646974Z
同步时间 2025-07-13 15:42
更新时间 2025-07-17 22:10
环境变量
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
镜像标签
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.1.3-local-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.1.3-local-linuxarm64  docker.io/langgenius/dify-plugin-daemon:0.1.3-local

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2025-07-02 17:40:57  0.00B 设置默认要执行的命令
CMD ["/bin/bash" "-c" "/app/entrypoint.sh"]
                        
# 2025-07-02 17:40:57  86.05MB 复制新文件或目录到容器中
COPY /app/main /app/entrypoint.sh /app/ # buildkit
                        
# 2025-07-02 17:40:56  0.00B 设置环境变量 GIN_MODE
ENV GIN_MODE=release
                        
# 2025-07-02 17:40:56  0.00B 设置环境变量 PLATFORM
ENV PLATFORM=local
                        
# 2025-07-02 17:40:56  0.00B 设置环境变量 UV_PATH
ENV UV_PATH=/usr/local/bin/uv
                        
# 2025-07-02 17:40:56  128.74MB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c 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]" # buildkit
                        
# 2025-07-02 17:40:50  0.00B 设置环境变量 TIKTOKEN_CACHE_DIR
ENV TIKTOKEN_CACHE_DIR=/app/.tiktoken
                        
# 2025-07-02 17:40:50  972.92MB 执行命令并创建新的镜像层
RUN |1 PLATFORM=local /bin/sh -c apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl python3.12 python3.12-venv python3.12-dev python3-pip ffmpeg build-essential     && apt-get clean     && rm -rf /var/lib/apt/lists/*     && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1; # buildkit
                        
# 2025-07-02 17:40:50  0.00B 定义构建参数
ARG PLATFORM=local
                        
# 2025-07-02 17:38:59  0.00B 设置工作目录为/app
WORKDIR /app
                        
# 2025-06-20 07:16:56  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/bash"]
                        
# 2025-06-20 07:16:56  100.64MB 
/bin/sh -c #(nop) ADD file:d3e5c3c7ed81035a9d3dc27dc9f7b63cca5f6bbbaa499c38e470d52b7e57817d in / 
                        
# 2025-06-20 07:16:53  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.version=24.04
                        
# 2025-06-20 07:16:53  0.00B 
/bin/sh -c #(nop)  LABEL org.opencontainers.image.ref.name=ubuntu
                        
# 2025-06-20 07:16:53  0.00B 
/bin/sh -c #(nop)  ARG LAUNCHPAD_BUILD_ARCH
                        
# 2025-06-20 07:16:53  0.00B 
/bin/sh -c #(nop)  ARG RELEASE
                        
                    

镜像信息

{
    "Id": "sha256:9a4912493da299beff3f212b056b5ac6980c089385489b27eed7aa6cc4ca065f",
    "RepoTags": [
        "langgenius/dify-plugin-daemon:0.1.3-local",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon:0.1.3-local-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/langgenius/dify-plugin-daemon@sha256:3459cd1bfaf0e6cc80ef414671bd00c1dee7b68fe72279b729c76f411f3453cf"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-07-02T09:40:57.956646974Z",
    "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",
    "Variant": "v8",
    "Os": "linux",
    "Size": 1288356530,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/6df48d8cbf113e218d5e30eefd5f47db177b6badd6d01e36cfbe9b99981a41ee/diff:/var/lib/docker/overlay2/285b50dd0dd015f4cb4a686bc2143cb6c86c9f49fa2a19a3620c195d55e3c25b/diff:/var/lib/docker/overlay2/3aa576c287472ce519b9d503aa698ac34eabd9aac74d1b12847633d04a28dc64/diff:/var/lib/docker/overlay2/2b5c54f9db368a7114c3615e983950b7a17d06bbcce281ad50d60b6f400f32df/diff",
            "MergedDir": "/var/lib/docker/overlay2/63672578d537145ed2fae7cfb40fc1282879bf471dcbb64484aaa04a66cb418b/merged",
            "UpperDir": "/var/lib/docker/overlay2/63672578d537145ed2fae7cfb40fc1282879bf471dcbb64484aaa04a66cb418b/diff",
            "WorkDir": "/var/lib/docker/overlay2/63672578d537145ed2fae7cfb40fc1282879bf471dcbb64484aaa04a66cb418b/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ccd2cfe57c25db3597f049070e10ffe286c34a12ccaadcf69ce28543ce350979",
            "sha256:2c8844042b814644952d6e74e3677ca7594be57347c373245e73ef1936354c5e",
            "sha256:863613c86120ed74bb8029ea62201dcb592bf456c17303a8c7c736bfa81324fe",
            "sha256:8714048e3314557709172c4cfaf9d540c5457f26e75d4f3b1de1615a0261c49b",
            "sha256:6960223c088567a4740f7a3a838abb0637f536d551c3616de1e5f701e39ed795"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-07-13T15:41:06.036873504+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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