From 1738f7f79153381b8d10885f22d0218dddf626c0 Mon Sep 17 00:00:00 2001 From: jiangrui1994 <31405035+jiangrui1994@users.noreply.github.com> Date: Sun, 16 Mar 2025 14:55:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 711714d..701f1a5 100644 --- a/README.md +++ b/README.md @@ -159,7 +159,7 @@ pnpm start ```bash docker run -d \ -p 8008:8008 \ - -v /your/local/path:/app/data \ + -v /your/local/path/data:/app/data \ -v /your/local/path/config:/app/config \ --name cloud-saver \ jiangrui1994/cloudsaver:latest @@ -170,7 +170,7 @@ docker run -d \ ```bash docker run -d \ -p 8008:8008 \ - -v /your/local/path:/app/data \ + -v /your/local/path/data:/app/data \ -v /your/local/path/config:/app/config \ --name cloud-saver \ jiangrui1994/cloudsaver:test @@ -191,7 +191,7 @@ services: ports: - "8008:8008" volumes: - - /your/local/path:/app/data + - /your/local/path/data:/app/data - /your/local/path/config:/app/config restart: unless-stopped ``` @@ -207,7 +207,7 @@ services: ports: - "8008:8008" volumes: - - /your/local/path:/app/data + - /your/local/path/data:/app/data - /your/local/path/config:/app/config restart: unless-stopped ``` @@ -223,7 +223,7 @@ JWT_SECRET=your_jwt_secret_here # Telegram配置 TELEGRAM_BASE_URL=https://t.me/s -# Telegram频道配置 +# Telegram频道配置(0.3.0及之后版本无效) TELE_CHANNELS=[{"id":"xxxx","name":"xxxx资源分享"}] ```