Overview
- Full name
docker.io/langgenius/enterprise_plugin-connector- Registry
- docker.io
- Namespace
- langgenius
- Repository
- enterprise_plugin-connector
- Cached tags
- 609
- Last synced
- 07/06/2026, 08:39 PM
- Topics
Introduction
Dify 企业版插件连接器镜像,负责 SaaS 插件市场与私有化 Dify 实例之间的安全桥接与授权同步。
Details
enterprise_plugin-connector 是 Dify 商业部署的组件之一,使内网 Dify 能拉取、验证并安装 LangGenius 插件市场的扩展,同时上报许可证与使用统计。需配置 Dify API 地址、企业 License Key 与出站 HTTPS 代理(如受限外网)。单独运行无 UI,以 HTTP 服务形式与 Dify 主栈通信;未授权环境请勿暴露公网。
快速启动
docker run -d --name dify-plugin-connector \
-p 5004:5004 \
-e DIFY_INNER_API_URL=http://dify-api:5001 \
-e ENTERPRISE_LICENSE=your-license-key \
docker.io/langgenius/enterprise_plugin-connector:latest
推荐实践
docker run -d --name dify-plugin-connector \
--restart unless-stopped \
-p 5004:5004 \
-e DIFY_INNER_API_URL=http://dify-api:5001 \
-e ENTERPRISE_LICENSE=your-license-key \
-e HTTPS_PROXY=http://proxy.corp:8080 \
docker.io/langgenius/enterprise_plugin-connector:1.0.0
核心参数说明
-e DIFY_INNER_API_URL— Dify 后端内部 API 地址-e ENTERPRISE_LICENSE— 企业 License 密钥-e HTTPS_PROXY— 受限外网访问插件市场时的代理-p 5004:5004— 连接器 HTTP 端口--restart unless-stopped— 与 Dify 栈同生命周期
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: dify-plugin-connector
spec:
replicas: 1
selector:
matchLabels:
app: dify-plugin-connector
template:
metadata:
labels:
app: dify-plugin-connector
spec:
containers:
- name: connector
image: docker.io/langgenius/enterprise_plugin-connector:1.0.0
ports:
- containerPort: 5004
env:
- name: DIFY_INNER_API_URL
value: http://dify-api:5001
- name: ENTERPRISE_LICENSE
valueFrom:
secretKeyRef:
name: dify-enterprise
key: license
---
apiVersion: v1
kind: Service
metadata:
name: dify-plugin-connector
spec:
selector:
app: dify-plugin-connector
ports:
- port: 5004
targetPort: 5004
License 放入 Secret;NetworkPolicy 限制仅 Dify API Pod 可访问,出站走 Egress 代理。