From 7661b71fccf6cc6a977115b7ed48675855322522 Mon Sep 17 00:00:00 2001 From: Troy <133468432+TroyMitchell911@users.noreply.github.com> Date: Fri, 23 May 2025 21:58:14 +0800 Subject: [PATCH] Fix wrong commands in README In the readme, the parameters for mounting the sqlite volume are wrong, which does not match the comments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ecc98d7..d0e2ac8 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ app/ > Note: If using an SQLite database, you need to mount a data volume to persist > ```bash - > docker run -d -p 8000:8000 --env-file .env -v /path/to//app/data gemini-balance + > docker run -d -p 8000:8000 --env-file .env -v /path/to/data:/app/data gemini-balance > ``` > Where `/path/to/data` is the data storage path on the host, and `/app/data` is the data directory inside the container. @@ -121,7 +121,7 @@ app/ > Note: If using an SQLite database, you need to mount a data volume to persist > ```bash - > docker run -d -p 8000:8000 --env-file .env -v /path/to//app/data ghcr.io/snailyp/gemini-balance:latest + > docker run -d -p 8000:8000 --env-file .env -v /path/to/data:/app/data ghcr.io/snailyp/gemini-balance:latest > ``` > Where `/path/to/data` is the data storage path on the host, and `/app/data` is the data directory inside the container.