feat(core): scaffold account manager platform

This commit is contained in:
dmg
2026-08-01 13:03:26 -04:00
commit 9d305e5dc9
36 changed files with 11898 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
postgres:
image: postgres:17-alpine
environment:
POSTGRES_DB: minecraft_accounts
POSTGRES_USER: minecraft
POSTGRES_PASSWORD: minecraft
ports:
- "5432:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U minecraft -d minecraft_accounts"]
interval: 5s
timeout: 5s
retries: 10
volumes:
- postgres-data:/var/lib/postgresql/data
volumes:
postgres-data: