CryptPad - Zero knowledge, collaborative real time editing
Everything you need to deploy Cryptpad 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 Cryptpad up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Cryptpad with:
blastdock init cryptpad
Interactive mode:
blastdock init cryptpad -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 Cryptpad installation with these configuration options.
Web interface port
Admin email
Complete Docker Compose configuration for Cryptpad deployment.
version: '3.8'
services:
cryptpad:
image: cryptpad/cryptpad:latest
container_name: {{ project_name }}_cryptpad
restart: unless-stopped
ports:
- "3000"
environment:
0: CPAD_ADMIN_EMAIL={{ admin_email }}
1: CPAD_HOST_NAME=localhost
volumes:
- /cryptpad/data
- /cryptpad/blob
- /cryptpad/block
- /cryptpad/customize
networks:
- cryptpad_network
volumes:
cryptpad_data:
driver: local
cryptpad_blob:
driver: local
cryptpad_block:
driver: local
cryptpad_customize:
driver: local
networks:
cryptpad_network:
driver: bridge