chore: mqsrv backend

This commit is contained in:
Chen Gu
2026-05-09 00:52:04 +08:00
commit 606137e030
2165 changed files with 904507 additions and 0 deletions

38
docker-compose.yml Normal file
View File

@@ -0,0 +1,38 @@
version: '3.8'
services:
postgres:
image: postgres:16-alpine
container_name: maqt-postgres
environment:
POSTGRES_USER: maqt
POSTGRES_PASSWORD: maqt123456
POSTGRES_DB: maqt
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- "127.0.0.1:5432:5432"
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -U maqt"]
interval: 5s
timeout: 5s
retries: 5
mqsrv:
build: .
container_name: maqt-backend
ports:
- "127.0.0.1:3002:3001"
environment:
- DATABASE_URL=postgresql://maqt:maqt123456@postgres:5432/maqt
- JWT_SECRET=maqt-jwt-secret-key-2026-change-in-production
- ENCRYPTION_KEY=maqt-encryption-key-32bytes!
- PORT=3001
restart: unless-stopped
depends_on:
postgres:
condition: service_healthy
volumes:
pgdata: