Mongo Express - Web-based MongoDB admin interface
Everything you need to deploy Mongo-express 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 Mongo-express up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Mongo-express with:
blastdock init mongo-express
Interactive mode:
blastdock init mongo-express -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 Mongo-express installation with these configuration options.
Web interface port
MongoDB host
MongoDB port
Admin username
Admin password
Complete Docker Compose configuration for Mongo-express deployment.
version: '3.8'
services:
mongo-express:
image: mongo-express:latest
container_name: {{ project_name }}_mongo_express
restart: unless-stopped
ports:
- "8081"
environment:
0: ME_CONFIG_MONGODB_SERVER={{ mongodb_host }}
1: ME_CONFIG_MONGODB_PORT={{ mongodb_port }}
2: ME_CONFIG_BASICAUTH_USERNAME={{ admin_username }}
3: ME_CONFIG_BASICAUTH_PASSWORD={{ admin_password }}
networks:
- mongo_express_network
networks:
mongo_express_network:
driver: bridge