Add complete Postgres Web Admin UI with Material UI and all-in-one Docker

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-08 01:18:34 +00:00
parent f9b7beab6f
commit fa2f365608
24 changed files with 1909 additions and 15 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
postgres-admin:
build: .
ports:
- "3000:3000"
- "5432:5432"
environment:
- DATABASE_URL=postgresql://docker:docker@localhost:5432/postgres
- JWT_SECRET=your-secret-key-change-in-production
- CREATE_ADMIN_USER=true
- ADMIN_USERNAME=admin
- ADMIN_PASSWORD=admin123
volumes:
- postgres_data:/var/lib/postgresql/15/main
volumes:
postgres_data: