Skip to main content

Luwak 3.4.8 Release Notes

· One min read
yitype
Maintainer of Luwak

变更日志

调整目录结构

  • bin 二进制文件
  • config 配置文件
  • health 健康检查文件
  • log 日志文件
  • nodejs/hooks 全局脚本
  • nodejs/lib 自定义模块
  • nodejs/node_modules 第三方库
  • plugins 插件
  • sysdb 系统数据库

与之前版本不兼容。

使用 Docker 安装开发版本示例

services:
luwak_dev:
image: ubuntu:24.04
container_name: luwak_dev
hostname: luwak_dev
ports:
- "21000:21000"
- "23000:23000"
volumes:
- .:/app
working_dir: /app
command: /app/bin/luwak-dev -c /app/config/luwak.toml
extra_hosts:
- "host.docker.internal:host-gateway"

使用 Docker 安装生产版本示例

services:
luwak_prod:
image: ubuntu:24.04
container_name: luwak_prod
hostname: luwak_prod
ports:
- "21000:21000"
volumes:
- .:/app
working_dir: /app
command: /app/bin/luwak -c /app/config/luwak.toml
extra_hosts:
- "host.docker.internal:host-gateway"