镜像概览

完整引用
docker.io/airlsyn/dify-web
Registry
docker.io
命名空间
airlsyn
仓库
dify-web
已缓存 Tag 数
3
最近同步
07/06/2026, 05:25 PM
相关主题

简介

Dify LLM 应用平台 Web 前端镜像,提供 Prompt 编排、知识库与 Agent 可视化界面,需配置 API 服务地址与后端协同部署。

详细介绍

airlsyn/dify-web 打包 Dify 开源版前端资源,用户通过浏览器管理应用、数据集与工作流。镜像为静态站点加反向代理,必须指向 Dify API(docker.io/langgenius/dify-api 或等价后端)。与 Dify 官方 all-in-one compose 相比便于前后端分离扩缩,但版本须与 API、Worker 严格对齐。生产应固定 release tag、经 Ingress HTTPS 暴露,并对管理面启用认证;前端无状态可水平扩展副本。

快速启动

docker run -d --name dify-web \
  -p 3000:3000 \
  -e CONSOLE_API_URL=http://dify-api:5001 \
  -e APP_API_URL=http://dify-api:5001 \
  docker.io/airlsyn/dify-web:latest

推荐实践

docker run -d --name dify-web \
  --restart unless-stopped \
  -p 3000:3000 \
  -e CONSOLE_API_URL=https://api.dify.internal \
  -e APP_API_URL=https://api.dify.internal \
  -e TZ=Asia/Shanghai \
  docker.io/airlsyn/dify-web:0.15.0

核心参数说明

  • -p 3000:3000 — 前端 HTTP 入口
  • -e CONSOLE_API_URL — 控制台 API 根地址
  • -e APP_API_URL — 应用运行时 API 地址
  • -e TZ — 界面时间展示时区
  • --restart unless-stopped — 控制台持续可访问
  • 固定 tag — 与 dify-api 版本匹配

Kubernetes

apiVersion: apps/v1
kind: Deployment
metadata:
  name: dify-web
spec:
  replicas: 2
  selector:
    matchLabels:
      app: dify-web
  template:
    metadata:
      labels:
        app: dify-web
    spec:
      containers:
        - name: web
          image: docker.io/airlsyn/dify-web:0.15.0
          ports:
            - containerPort: 3000
          env:
            - name: CONSOLE_API_URL
              value: http://dify-api.svc:5001
            - name: APP_API_URL
              value: http://dify-api.svc:5001
---
apiVersion: v1
kind: Service
metadata:
  name: dify-web
spec:
  selector:
    app: dify-web
  ports:
    - port: 3000
      targetPort: 3000

Ingress 分离控制台与应用域名;API URL 与 dify-api Service 同步,前端可 HPA 扩缩。

最新 Tag(20 条)

查看全部 3 个 Tag →
Tag架构推送时间大小Digest同步期望操作
docker.io/airlsyn/dify-web
:1.9.1.4
linux/amd64
2025/10/27 08:31175.8 MBsha256:055305575160
docker.io/airlsyn/dify-web
:1.9.1.2
linux/amd64
2025/10/08 21:37175.7 MBsha256:88ad1ed47b61
docker.io/airlsyn/dify-web
:1.9.1.1
linux/amd64
2025/10/05 21:49175.7 MBsha256:88ad1ed47b61