docs: refresh README setup guidance

This commit is contained in:
Hunter Bown
2026-05-14 16:28:52 -05:00
parent f8a4dee173
commit 2a4022acbe
6 changed files with 219 additions and 129 deletions
+10 -1
View File
@@ -17,6 +17,8 @@ docker volume create deepseek-tui-home
docker run --rm -it \
-e DEEPSEEK_API_KEY="$DEEPSEEK_API_KEY" \
-v deepseek-tui-home:/home/deepseek/.deepseek \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/hmbown/deepseek-tui:latest
```
@@ -26,9 +28,14 @@ Use a pinned release tag for reproducible installs:
docker run --rm -it \
-e DEEPSEEK_API_KEY="$DEEPSEEK_API_KEY" \
-v deepseek-tui-home:/home/deepseek/.deepseek \
ghcr.io/hmbown/deepseek-tui:v0.8.20
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/hmbown/deepseek-tui:vX.Y.Z
```
Replace `vX.Y.Z` with a tag from
[GitHub Releases](https://github.com/Hmbown/DeepSeek-TUI/releases).
## Local build
Build the image locally from a checkout:
@@ -43,6 +50,8 @@ Then run it with the same Docker-managed data volume:
docker run --rm -it \
-e DEEPSEEK_API_KEY="$DEEPSEEK_API_KEY" \
-v deepseek-tui-home:/home/deepseek/.deepseek \
-v "$PWD:/workspace" \
-w /workspace \
deepseek-tui
```