Cryptpad

CryptPad is a collaboration suite that is end-to-end-encrypted and open-source. It is built to enable collaboration, synchronizing changes to documents in real time.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
# SPDX-FileCopyrightText: 2023 XWiki CryptPad Team <contact@cryptpad.org> and contributors
#
# SPDX-License-Identifier: AGPL-3.0-or-later
 
services:
  cryptpad:
    image: "cryptpad/cryptpad:version-2024.6.1"
    hostname: cryptpad
 
    environment:
      - CPAD_MAIN_DOMAIN=https://your-main-domain.com
      - CPAD_SANDBOX_DOMAIN=https://your-sandbox-domain.com
      - CPAD_CONF=/cryptpad/config/config.js
 
      # Read and accept the license before uncommenting the following line:
      # https://github.com/ONLYOFFICE/web-apps/blob/master/LICENSE.txt
      # - CPAD_INSTALL_ONLYOFFICE=yes
 
    volumes:
      - ./data/blob:/cryptpad/blob
      - ./data/block:/cryptpad/block
      - ./customize:/cryptpad/customize
      - ./data/data:/cryptpad/data
      - ./data/files:/cryptpad/datastore
      - ./onlyoffice-dist:/cryptpad/www/common/onlyoffice/dist
      - ./onlyoffice-conf:/cryptpad/onlyoffice-conf
 
    ports:
      - "3000:3000"
      - "3003:3003"
 
    ulimits:
      nofile:
        soft: 1000000
        hard: 1000000
    restart: unless-stopped    

Resources

Website: https://cryptpad.org/

GitHub: https://github.com/cryptpad/cryptpad

Docker Hub: https://hub.docker.com/r/promasu/cryptpad

Configuration: https://docs.cryptpad.org/en/admin_guide/installation.html#docker