> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# reubah文件转换器

通用文件转换器和图像处理器

Reubah 是一个基于 Web 的文件处理工具，可以用来转换文档、处理图片和完成一些轻量格式转换任务，界面比较简单。

[开源地址](https://github.com/dendianugerah/reubah)

## 快速启动

:::tip
默认端口为 `8081`。如果处理敏感文件，建议只在内网使用或加上反向代理鉴权。
:::

```yml file="./reubah/docker-compose.yml" title="docker-compose.yml"
services:
  reubah:
    image: registry.cn-hangzhou.aliyuncs.com/buyfakett/reubah
    network_mode: host
    volumes:
      - ./tmp:/app/tmp
      - ./doc-temp:/tmp
    environment:
      - PORT=8081
    restart: unless-stopped

```
