CryptPad

CryptPad - Zero knowledge, collaborative real time editing

3000
Default Port
1
Services
10.0/20
Complexity
Low
Memory Usage
Configuration

Installation Command

blastdock init cryptpad

Template Overview

Everything you need to deploy Cryptpad with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Cryptpad
cryptpad/cryptpad:latest
Categories
Other
Security Features
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 Cryptpad up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Cryptpad with:

Terminal
blastdock init cryptpad

Interactive mode:

Terminal
blastdock init cryptpad -i

What's Included

Cryptpad
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 Cryptpad installation with these configuration options.

2
Required Fields
0
Optional Fields
0
Auto-Generated Passwords

Port

Web interface port

port
Default: 3000
Required: Yes

Admin Email

Admin email

string
Required: Yes

Docker Compose

Complete Docker Compose configuration for Cryptpad deployment.

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