update: sync local changes with latest features

This commit is contained in:
2026-06-22 11:26:25 +07:00
parent 1cf55126f5
commit 98412aa0bb
16 changed files with 491 additions and 33 deletions

23
docker-compose.yml Normal file
View File

@@ -0,0 +1,23 @@
services:
9router:
build:
context: .
image: 9router:local
container_name: 9router
restart: unless-stopped
env_file:
- .env
environment:
NODE_ENV: production
PORT: 20128
HOSTNAME: 0.0.0.0
DATA_DIR: /app/data
BASE_URL: http://localhost:20128
NEXT_PUBLIC_BASE_URL: http://localhost:20128
ports:
- "20128:20128"
volumes:
- 9router-data:/app/data
volumes:
9router-data: