pgAdmin - PostgreSQL administration tool
Everything you need to deploy Pgadmin with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Pgadmin up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Pgadmin with:
blastdock init pgadmin
Interactive mode:
blastdock init pgadmin -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Pgadmin installation with these configuration options.
Web interface port
Admin email
Admin password
Complete Docker Compose configuration for Pgadmin deployment.
version: '3.8'
services:
pgadmin:
image: dpage/pgadmin4:latest
container_name: {{ project_name }}_pgadmin
restart: unless-stopped
ports:
- "80"
environment:
0: PGADMIN_DEFAULT_EMAIL={{ email }}
1: PGADMIN_DEFAULT_PASSWORD={{ password }}
2: PGADMIN_CONFIG_SERVER_MODE=True
volumes:
- /var/lib/pgadmin
networks:
- pgadmin_network
volumes:
pgadmin_data:
driver: local
networks:
pgadmin_network:
driver: bridge