Drizzle Gateway

Drizzle Gateway 是 Drizzle Studio 的一个可自托管版本,您可以将其部署到您的基础设施上,并连接多个 SQL 数据库。1 个数据库连接每年费用为 20 美元,每增加一个连接每年费用为 10 美元。

Docker
linux-arm64
linux-x64
macos-arm64
macos-x64
# pull latest version
docker pull ghcr.io/drizzle-team/gateway:0.1.1 

# persistent volume is required for configuration file
docker volume create drizzle-gateway 

# start the studio
docker run -d \
  --name drizzle-gate \
  --restart always \
  -p 4983:4983 \
  -e PORT=4983 \ # Set the port for Drizzle Gateway (optional)
  -e STORE_PATH=./app \ # Set your store path (optional)
  -e MASTERPASS=your_master_password \ # Set your master pass (optional)
  -v drizzle-gateway:/app \
  ghcr.io/drizzle-team/gateway:0.1.1

# Once Drizzle Gateway is running, you can access it via the web interface at https://:4983

工作原理?

Drizzle Studio 服务器托管一个管理面板,您可以通过 host:port 访问。首次访问时,您需要将其与我们的 gateway.drizzle.studio 许可服务器关联,并通过 GitHub 登录。
连接成功后,您现在可以添加数据库连接。它会提示您购买订阅(1 个插槽每年 20 美元,5 个插槽每年 50 美元),我们还提供 7 天免费试用。如果您将其作为他人基础设施的一部分进行设置并希望他们支付订阅费用,我们还实现了“客户”订阅功能。

Drizzle Gateway 兼容 arm 和 amd 架构,您可以在 MacOS(Intel/M 芯片)和 Linux 上使用,任您选择。

它在 :4983 端口运行 Drizzle Gateway 服务器,如果需要,您可以通过提供 PORT 环境变量来覆盖它。
重要提示:请务必为 Docker 容器挂载一个以 /app 为根目录的持久化存储,这是存储您的会话并在服务器重启时恢复会话所必需的。

要覆盖 /app 根路径,请提供 STORE_PATH 环境变量。

您可以提供 MASTERPASS 环境变量来获得受保护的管理员访问权限,它还将解锁密码功能,您可以为其他人设置密码以获得受保护的访问权限,并且他们无法更改密码。

变更日志

TwitterDiscord 上订阅更新

v0.1.1 2025年11月06日