Add pgAdmin for browsing db.
This commit is contained in:
parent
7de2e83157
commit
24832449f6
1
.gitignore
vendored
1
.gitignore
vendored
@ -38,3 +38,4 @@ out/
|
||||
|
||||
# Custom
|
||||
.env
|
||||
/pgadmin_data/
|
||||
|
||||
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user