Open the server Apps tab
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


End-to-end encrypted collaboration suite
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the CryptPad template in Server Compass to deploy a self-hosted end-to-end encrypted collaboration suite on your VPS, then verify the CryptPad homepage in a browser.
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find CryptPad in the Server Compass template catalog.

Choose the CryptPad template. Server Compass fills the CryptPad image, persistent CryptPad storage volumes, domain settings, and required domains.

Confirm the app name and compose services. In this run, the app was named cryptpad-demo and used host port 3001.

Review the generated domain values, confirm the web and websocket ports are available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the CryptPad image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the CryptPad app is marked Running with its application URL available.

Click Open Application or open the application URL in a browser. The CryptPad homepage confirms the deployed app is reachable and ready for first account setup.

The CryptPad app loaded successfully in a browser and displayed the homepage.
It deploys CryptPad with persistent blob, block, data, and datastore volumes.
The tutorial used host port 3001, which maps to the CryptPad web server on container port 3000, plus websocket port 3003.
A fresh CryptPad deployment is considered reachable when the homepage loads. Continuing further requires first account setup, so the public guide verifies the safe pre-homepage.
No. The deployment guide should live on the CryptPad template detail page and be linked from the reusable template deployment docs page.
Set up CryptPad yourself using Docker Compose and the command line.
Connect to your remote server using SSH. Make sure you have your server credentials ready.
# Log into your server
ssh root@<your-server-ip>
# If using key-based auth
ssh -i ~/.ssh/my-key root@<your-server-ip>First time? Docker not installed? Run: curl -fsSL https://get.docker.com | sh
Set up a directory to store your Docker configuration.
# Create and navigate to project directory
mkdir -p ~/apps/cryptpad
cd ~/apps/cryptpadAdd this configuration to your docker-compose.yml file:
services:
cryptpad:
image: cryptpad/cryptpad:latest
ports:
- "3000:3000"
- "3003:3003"
environment:
- CPAD_MAIN_DOMAIN=<your-domain>
- CPAD_SANDBOX_DOMAIN=<your-sandbox-domain>
volumes:
- cryptpad_blob:/cryptpad/blob
- cryptpad_block:/cryptpad/block
- cryptpad_data:/cryptpad/data
- cryptpad_datastore:/cryptpad/datastore
restart: unless-stopped
volumes:
cryptpad_blob:
cryptpad_block:
cryptpad_data:
cryptpad_datastore:
PORTHost port(default: 3000)WEBSOCKET_PORTWebSocket port(default: 3003)DOMAINMain domainSANDBOX_DOMAINSandbox domainExecute the deployment and check the container status.
# Deploy the application
docker compose up -d
# Check container health
docker compose ps
# Monitor logs
docker compose logs -f --tail=100Enable network access by updating your firewall rules.
# Allow the application port through firewall
sudo ufw allow 3000/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:3000No terminal needed. Deploy CryptPad through a visual dashboard with automatic configuration.
Common questions about self-hosting CryptPad
Simply download Server Compass, connect to your VPS, and select CryptPad from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
CryptPad requires a minimum of 512MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard CryptPad backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest CryptPad image will be pulled and deployed with zero downtime.
CryptPad is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy CryptPad to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass