feat: complete v0.5 operations foundation

This commit is contained in:
2026-07-19 03:58:03 +08:00
parent ca3f706cc1
commit d285f3e275
35 changed files with 248 additions and 39 deletions
+10 -2
View File
@@ -1,6 +1,10 @@
services:
web:
build: .
image: mebbling:${MEBBLING_VERSION:-0.5.0}
build:
context: .
args:
APP_VERSION: "${MEBBLING_VERSION:-0.5.0}"
ports: ["8088:3000"]
env_file: .env
environment: { DATABASE_PATH: /app/data/hub.db }
@@ -9,7 +13,11 @@ services:
- ./public/uploads:/app/public/uploads
restart: unless-stopped
worker:
build: .
image: mebbling:${MEBBLING_VERSION:-0.5.0}
build:
context: .
args:
APP_VERSION: "${MEBBLING_VERSION:-0.5.0}"
command: npm run worker
env_file: .env
environment: { DATABASE_PATH: /app/data/hub.db }