Portainer

Portainer - Docker management UI

9000
Default Port
1
Services
6.0/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init portainer

Template Overview

Everything you need to deploy Portainer with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Portainer
portainer/portainer-ce:latest
Categories
Other
Security Features
Password Protection, SSL/HTTPS Support, Admin User
Resource Requirements
CPU: Low, Memory: Low , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Portainer up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Portainer with:

Terminal
blastdock init portainer

Interactive mode:

Terminal
blastdock init portainer -i

What's Included

Portainer
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Portainer installation with these configuration options.

3
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 9000
Required: Yes

Https Port

HTTPS port

port
Default: 9443
Required: Yes

Admin Password

Admin password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Docker Compose

Complete Docker Compose configuration for Portainer deployment.

1
Services
1
Volumes
0
Networks
2
Exposed Ports
docker-compose.yml
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