Portainer CE

Portainer CE - Container management platform

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

Installation Command

blastdock init portainer-ce

Template Overview

Everything you need to deploy Portainer-ce 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
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-ce 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-ce with:

Terminal
blastdock init portainer-ce

Interactive mode:

Terminal
blastdock init portainer-ce -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-ce installation with these configuration options.

2
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Port

Web interface port

port
Default: 9000
Required: Yes

Edge Port

Edge agent port

port
Default: 8000
Required: Yes

Docker Compose

Complete Docker Compose configuration for Portainer-ce deployment.

1
Services
1
Volumes
1
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"
      - "8000"
    volumes:
      - /data
      - /var/run/docker.sock
    networks:
      - portainer_network

volumes:
  portainer_data:
    driver: local

networks:
  portainer_network:
    driver: bridge