feat: Docker deploy serving SPA and API on :8080

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
肉末
2026-07-14 13:03:51 +08:00
parent 600c536367
commit 7c2489ea5c
5 changed files with 149 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
services:
mincedpad:
build: .
ports: ["8080:8080"]
environment:
ADMIN_PASSWORD: "changeme"
SECRET_KEY: "change-me-in-production"
MAX_UPLOAD_MB: "200"
RATE_LIMIT_PER_SECOND: "2"
DATA_DIR: "/data"
volumes:
- ./data:/data
restart: unless-stopped