Update Docker build process and documentation

- Replaced `bun run build:bun` with `npm run build` in Dockerfile for consistency.
- Enhanced `DOCKER.md` to include `DATA_DIR` environment variable usage for database persistence.
- Clarified paths for container and host data storage.
This commit is contained in:
nghionpoint
2026-04-10 10:14:34 +07:00
parent d99f63cf36
commit 5d3780cfd2
2 changed files with 20 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ docker build -t 9router .
docker run --rm \ docker run --rm \
-p 20128:20128 \ -p 20128:20128 \
-v "$HOME/.9router:/app/data" \ -v "$HOME/.9router:/app/data" \
-e DATA_DIR=/app/data \
--name 9router \ --name 9router \
9router 9router
``` ```
@@ -23,10 +24,24 @@ The app listens on port `20128` in the container.
## What the volume does ## What the volume does
```bash ```bash
-v "$HOME/.9router:/app/data" -v "$HOME/.9router:/app/data" \
-e DATA_DIR=/app/data
``` ```
This keeps your data outside the container so it survives restarts and image rebuilds. `9router` stores its database at `path.join(DATA_DIR, "db.json")`.
Without `DATA_DIR`, the app falls back to the current user's home directory (for example `~/.9router/db.json` on macOS/Linux). In the container, set `DATA_DIR=/app/data` so the bind mount is actually used.
With the example above, the database file is:
```text
/app/data/db.json
```
and it is persisted on the host at:
```text
$HOME/.9router/db.json
```
## Stop container ## Stop container
@@ -40,6 +55,7 @@ docker stop 9router
docker run -d \ docker run -d \
-p 20128:20128 \ -p 20128:20128 \
-v "$HOME/.9router:/app/data" \ -v "$HOME/.9router:/app/data" \
-e DATA_DIR=/app/data \
--name 9router \ --name 9router \
9router 9router
``` ```
@@ -60,6 +76,7 @@ Example:
docker run --rm \ docker run --rm \
-p 20128:20128 \ -p 20128:20128 \
-v "$HOME/.9router:/app/data" \ -v "$HOME/.9router:/app/data" \
-e DATA_DIR=/app/data \
-e PORT=20128 \ -e PORT=20128 \
-e HOSTNAME=0.0.0.0 \ -e HOSTNAME=0.0.0.0 \
-e DEBUG=true \ -e DEBUG=true \

View File

@@ -12,7 +12,7 @@ RUN --mount=type=cache,target=/root/.npm \
COPY . ./ COPY . ./
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
RUN bun run build:bun RUN npm run build
FROM oven/bun:1-alpine AS runner FROM oven/bun:1-alpine AS runner
WORKDIR /app WORKDIR /app