Etherpad

Etherpad - Real-time collaborative text editor

9001
Default Port
2
Services
15.5/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init etherpad

Template Overview

Everything you need to deploy Etherpad with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Etherpad
etherpad/etherpad:latest
Mysql
mysql:8
Categories
Database
Security Features
Password Protection, Admin User
Resource Requirements
CPU: Medium, Memory: Medium , 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 Etherpad up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Etherpad with:

Terminal
blastdock init etherpad

Interactive mode:

Terminal
blastdock init etherpad -i

What's Included

Etherpad
Container service
Mysql
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 Etherpad installation with these configuration options.

3
Required Fields
0
Optional Fields
2
Auto-Generated Passwords

Port

Web interface port

port
Default: 9001
Required: Yes

Mysql Password

MySQL password

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

Admin Password

Admin password

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

Docker Compose

Complete Docker Compose configuration for Etherpad deployment.

2
Services
2
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  mysql:
    image: mysql:8
    container_name: {{ project_name }}_mysql
    restart: unless-stopped
    environment:
      0: MYSQL_ROOT_PASSWORD={{ mysql_password }}
      1: MYSQL_DATABASE=etherpad
      2: MYSQL_USER=etherpad
      3: MYSQL_PASSWORD={{ mysql_password }}
    volumes:
      - /var/lib/mysql
    networks:
      - etherpad_network

  etherpad:
    image: etherpad/etherpad:latest
    container_name: {{ project_name }}_etherpad
    restart: unless-stopped
    depends_on:
      - mysql
    ports:
      - "9001"
    environment:
      0: DB_TYPE=mysql
      1: DB_HOST=mysql
      2: DB_PORT=3306
      3: DB_NAME=etherpad
      4: DB_USER=etherpad
      5: DB_PASS={{ mysql_password }}
      6: ADMIN_PASSWORD={{ admin_password }}
    volumes:
      - /opt/etherpad-lite/var
    networks:
      - etherpad_network

volumes:
  mysql_data:
    driver: local

  etherpad_data:
    driver: local

networks:
  etherpad_network:
    driver: bridge