Etherpad - Real-time collaborative text editor
Everything you need to deploy Etherpad 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 Etherpad up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Etherpad with:
blastdock init etherpad
Interactive mode:
blastdock init etherpad -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 Etherpad installation with these configuration options.
Web interface port
MySQL password
Admin password
Complete Docker Compose configuration for Etherpad deployment.
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