Add pgAdmin for browsing db.

This commit is contained in:
Jesse Brault 2026-01-30 16:26:37 -06:00
parent 7de2e83157
commit 24832449f6
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@ -38,3 +38,4 @@ out/
# Custom
.env
/pgadmin_data/

View File

@ -32,6 +32,17 @@ services:
- /data
- --console-address
- :9001
pgadmin:
image: dpage/pgadmin4:latest
container_name: pgadmin
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com # Your login email
PGADMIN_DEFAULT_PASSWORD: root # Your login password
ports:
- "5555:80"
volumes:
- ./pgadmin_data:/var/lib/pgadmin # Persistent storage for pgAdmin settings
restart: always
volumes:
postgres-data:
minio-data: