No description
Find a file
2026-01-20 16:24:20 +08:00
.devcontainer fix(docker): add python3-tinycss2 for Inkscape DXF export (#498) 2026-01-11 16:18:46 +01:00
.github fix(ci): 修正 Release workflow 確保 Docker Image 正確發佈 2026-01-20 12:52:02 +08:00
.vscode chore: fix lint 2025-10-05 14:19:13 +00:00
docs feat: v0.1.9 - Setup 頁面 i18n + 語言選擇器 UI 修復 + 文件重構 2026-01-20 15:55:49 +08:00
fonts feat: bundle full conversion dependencies into image 2026-01-19 22:00:45 +08:00
images fix: wrong layout on search with few options 2024-09-26 23:37:19 +02:00
public feat: v0.1.9 - 全頁拖曳上傳 + i18n 修正 + 文件更新 2026-01-20 15:09:30 +08:00
src feat: v0.1.9 - Setup 頁面 i18n + 語言選擇器 UI 修復 + 文件重構 2026-01-20 15:55:49 +08:00
tests/converters fix(libreoffice): PDF 轉 DOCX 修正 (v0.1.8) 2026-01-20 14:38:17 +08:00
.bun-version chore: add bun version files 2025-08-13 23:35:07 +02:00
.dockerignore refactor: split main file to pages 2025-06-03 15:04:18 +02:00
.gitignore chore: add devcontainer 2025-10-05 13:57:54 +00:00
biome.json chore: fix lint 2025-10-05 14:19:13 +00:00
bun.lock feat(i18n): add multi-language UI support with 5 languages 2026-01-20 10:01:55 +08:00
CHANGELOG.md feat: v0.1.9 - Setup 頁面 i18n + 語言選擇器 UI 修復 + 文件重構 2026-01-20 15:55:49 +08:00
compose.yaml feat: v0.1.9 - 全頁拖曳上傳 + i18n 修正 + 文件更新 2026-01-20 15:09:30 +08:00
Dockerfile feat: v0.1.9 - 全頁拖曳上傳 + i18n 修正 + 文件更新 2026-01-20 15:09:30 +08:00
Dockerfile.full feat(docker): 重組 Docker 架構 v0.1.6 2026-01-20 12:46:49 +08:00
eslint.config.ts fix(ci): resolve all lint errors for GitHub Actions 2026-01-20 12:16:13 +08:00
knip.json fix(ci): resolve all lint errors for GitHub Actions 2026-01-20 12:16:13 +08:00
LICENSE chore: add devcontainer 2025-10-05 13:57:54 +00:00
mise.toml chore: add comment to dev compose file 2026-01-11 17:46:56 +01:00
package.json feat: v0.1.9 - 全頁拖曳上傳 + i18n 修正 + 文件更新 2026-01-20 15:09:30 +08:00
postcss.config.js chore: fix lint 2025-10-05 14:19:13 +00:00
prettier.config.js feature: add download all file by file alongside the tar download (#415) 2025-10-07 21:27:31 +02:00
README.md docs: README 重構 - 加入 docker run + 精簡結構 2026-01-20 16:24:20 +08:00
renovate.json chore: add bun to renovate ignore 2025-10-07 20:56:55 +00:00
SECURITY.md chore: fix lint 2025-10-05 14:19:13 +00:00
tsconfig.eslint.json chore: fix typescript-eslint (#439) 2025-11-15 20:15:02 +01:00
tsconfig.json feat(i18n): add multi-language UI support with 5 languages 2026-01-20 10:01:55 +08:00

ConvertX-CN

ConvertX-CN

開箱即用的全功能檔案轉換服務

Docker Pulls GitHub Release


這是什麼?

自架的檔案轉換服務,支援 1000+ 格式,包含影音、圖片、文件、電子書等。
已內建 LibreOffice、FFmpeg、Pandoc 等 20+ 轉換器與中日韓字型,一個 Docker 命令就能跑


快速部署

1. 建立資料夾

mkdir -p ~/convertx-cn/data && cd ~/convertx-cn

docker run -d \
  --name convertx-cn \
  -p 3000:3000 \
  -v ./data:/app/data \
  -e JWT_SECRET=your-secret-key-at-least-32-chars \
  convertx/convertx-cn:latest

開啟 http://localhost:3000 註冊即可使用。

Windows 用戶請先 mkdir C:\convertx-cn\data,並將 ./data 改為 C:\convertx-cn\data


推薦方式Docker Compose

建立 docker-compose.yml

services:
  convertx:
    image: convertx/convertx-cn:latest
    container_name: convertx-cn
    restart: unless-stopped
    ports:
      - "3000:3000"
    volumes:
      - ./data:/app/data
    environment:
      - TZ=Asia/Taipei
      - JWT_SECRET=your-secret-key-at-least-32-chars
參數 說明 必要
./data 存放檔案的資料夾,必須先建立
JWT_SECRET 登入驗證金鑰,不設會每次重啟被登出
TZ 時區(預設 UTC

3. 啟動

docker compose up -d
參數 說明
./data 資料夾,需先建立
JWT_SECRET 登入金鑰,必須設定

首次下載約 4-6 GB。


支援格式

類型 轉換器 格式數
影音 FFmpeg 400+
圖片 ImageMagick, libvips 200+
文件 LibreOffice, Pandoc 150+
電子書 Calibre 40+
向量圖 Inkscape, resvg, Potrace 20+
資料 Dasel (JSON/YAML/TOML/XML) 10+

完整列表 → docs/converters.md


常見問題

問題 解法
登入後被踢回 設定 HTTP_ALLOWED=trueTRUST_PROXY=true
資料消失 確認 ./data:/app/data 已掛載
重啟後登出 設定固定 JWT_SECRET

更多 → docs/faq.md


進階文件

主題 連結
環境變數 docs/config/environment.md
安全性設定 docs/config/security.md
反向代理 / HTTPS docs/deployment.md
Docker Compose docs/docker-compose/
版本選擇 docs/versions/
更新方法 docs/deployment/update.md

預覽

ConvertX-CN Preview


MIT | 基於 C4illin/ConvertX