Go to file
Georg Krause be2ff13536
continuous-integration/drone/push Build is passing Details
specify architecture
2020-09-15 15:19:16 +02:00
cryptpad@521b59088b Update submodule 2020-09-15 14:19:04 +02:00
customize Mount CryptPad as Git submodule 2020-05-05 06:11:05 +02:00
.dockerignore Add migrationguide, config for traefik and compose 2020-05-06 15:28:01 +02:00
.drone.yml specify architecture 2020-09-15 15:19:16 +02:00
.gitmodules Revert "Get cryptpad submodule via ssh" 2020-05-06 14:37:00 +02:00
Dockerfile Fix permission of volumes 2020-05-07 11:56:22 +02:00
MIGRATION.md Add migrationguide, config for traefik and compose 2020-05-06 15:28:01 +02:00
README.md Fix Docker CLI commands for local files 2020-05-16 20:44:05 +02:00
docker-compose.yml Add migrationguide, config for traefik and compose 2020-05-06 15:28:01 +02:00
traefik2.yml Add migrationguide, config for traefik and compose 2020-05-06 15:28:01 +02:00

README.md

CryptPad docker

This repository has been created as part of an ongoing effort to separate docker from the CryptPad platform repo.

The officially recommended deployment method is to use the example.nginx.conf file provided by the core repo and to manage updates directly on the host system using git, npm (as provided by nvm) and bower.

Docker images and their supporting configuration files are provided as a community effort by those using them, with support provided by the core development team on a best-effort basis. Keep in mind that the core team neither uses nor tests Docker images, so your results may vary.

Migration

Please see the migration guide for further information on switching to this repository.

Usage

General notices

  • Mounted files and folders have to be owned by userid 4001. It is possible you have to run sudo chown -R 4001:4001 filename

Dockerfile

  • Run: docker run -d -p 3000:3000 -p 3001:3001 promasu/cryptpad
  • Run with customizations: docker run -d -p 3000:3000 -p 3001:3001 -v ${PWD}/customize:/cryptpad/customize promasu/cryptpad
  • Run with configuration: docker run -d -p 3000:3000 -p 3001:3001 -v ${PWD}/config.js:/cryptpad/config/config.js promasu/cryptpad
  • Run with persistent data: docker run -d -p 3000:3000 -p 3001:3001 -v ${PWD}/data/blob:/cryptpad/blob -v ${PWD}/data/block:/cryptpad/block -v ${PWD}/customize:/cryptpad/customize -v ${PWD}/data/data:/cryptpad/data -v ${PWD}/data/files:/cryptpad/datastore promasu/cryptpad

Docker-compose

  • Run: docker-compose up
  • Run with traefik2 labels: docker-compose -f docker-compose.yml -f traefik2.yml up