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
|
# Custom
|
||||||
.env
|
.env
|
||||||
|
/pgadmin_data/
|
||||||
|
|||||||
@ -32,6 +32,17 @@ services:
|
|||||||
- /data
|
- /data
|
||||||
- --console-address
|
- --console-address
|
||||||
- :9001
|
- :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:
|
volumes:
|
||||||
postgres-data:
|
postgres-data:
|
||||||
minio-data:
|
minio-data:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user