Portainer - Docker management UI
Everything you need to deploy Portainer 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 Portainer up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Portainer with:
blastdock init portainer
Interactive mode:
blastdock init portainer -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 Portainer installation with these configuration options.
HTTP port
HTTPS port
Admin password
Complete Docker Compose configuration for Portainer deployment.
version: '3.8'
services:
portainer:
image: portainer/portainer-ce:latest
container_name: {{ project_name }}_portainer
restart: unless-stopped
ports:
- "9000"
- "9443"
volumes:
- /var/run/docker.sock
- /data
volumes:
portainer_data:
driver: local