asktable-feishu-gateway)是私有部署里的可选组件,只有当你要让团队在飞书群里 @bot 问数时才需要它。它通过 Redis 与 AskTable 后端通信,维持飞书 IM 的 WebSocket 长连接。
不接飞书的话,不用加这个容器。
在 compose 里启用
在 私有部署 的docker-compose.yaml 里加上这个服务:
asktable-redis,无需额外暴露端口。改完执行 docker compose up -d 生效。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
飞书网关是私有部署里的可选组件,负责飞书 IM 的长连接。本页说明它的作用和如何在 compose 里启用。
asktable-feishu-gateway)是私有部署里的可选组件,只有当你要让团队在飞书群里 @bot 问数时才需要它。它通过 Redis 与 AskTable 后端通信,维持飞书 IM 的 WebSocket 长连接。
不接飞书的话,不用加这个容器。
docker-compose.yaml 里加上这个服务:
services:
# 飞书网关(可选):接入飞书 IM 时才需要
asktable-feishu-gateway:
image: registry.cn-shanghai.aliyuncs.com/datamini/asktable-feishu-gateway:latest # 中国大陆;海外用 datamini/asktable-feishu-gateway:latest
container_name: asktable-feishu-gateway
restart: unless-stopped
depends_on:
- asktable-redis
environment:
TZ: Asia/Shanghai
REDIS_URL: redis://asktable-redis:6379
asktable-redis,无需额外暴露端口。改完执行 docker compose up -d 生效。
