Compare commits
25 Commits
0.5.0+v202
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 36ee3451a3 | |||
| 06d98da6db | |||
| aa8e1d3488 | |||
| 9c18c176c5 | |||
| 96df5bda68 | |||
| e2cbecdc89 | |||
| 7a66942dd9 | |||
| bb655259c0 | |||
| 6d047f5987 | |||
| 081c196078 | |||
| a9f451a177 | |||
| 81119b2eea | |||
| 38393e1fd1 | |||
| a72a5c78db | |||
| 9922390ce3 | |||
| c1ee1d9817 | |||
| d3b1bb4f29 | |||
| 800e8426ce | |||
| 97209123e0 | |||
| 899f9d9da0 | |||
| f31c12299d | |||
| b8f074e0a7 | |||
| bd2488ffea | |||
| 61b41e2866 | |||
| db049838e9 |
22
.env.sample
22
.env.sample
@ -1,5 +1,6 @@
|
||||
TYPE=cryptpad
|
||||
|
||||
COMPOSE_FILE="compose.yml"
|
||||
|
||||
DOMAIN=cryptpad.example.com
|
||||
|
||||
@ -16,3 +17,24 @@ SANDBOX_DOMAIN=sandbox.cryptpad.example.com
|
||||
## Domain aliases
|
||||
#EXTRA_DOMAINS=', `www.cryptpad.example.com`'
|
||||
LETS_ENCRYPT_ENV=production
|
||||
|
||||
## Set to true to block unregistered users from accessing any CryptPad applications
|
||||
## See https://docs.cryptpad.org/en/admin_guide/customization.html#restricting-guest-access
|
||||
#RESTRICT_GUEST_ACCESS=false
|
||||
|
||||
## SSO / OIDC (optional — uncomment below and add compose.sso.yml to COMPOSE_FILE to enable)
|
||||
# COMPOSE_FILE="$COMPOSE_FILE:compose.sso.yml"
|
||||
#SSO_ENABLED=true
|
||||
#SSO_ENFORCED=false
|
||||
#SSO_PROVIDER_NAME=Authentik
|
||||
#SSO_OIDC_URL=https://authentik.example.com/application/o/cryptpad
|
||||
#SSO_CLIENT_ID=cryptpad
|
||||
#SSO_CLIENT_SECRET_VERSION=v1
|
||||
#SSO_JWT_ALG=RS256
|
||||
#SSO_PLUGIN_VERSION=0.4.0
|
||||
|
||||
## Adding OnlyOffice to cryptpad
|
||||
#COMPOSE_FILE="$COMPOSE_FILE:compose.onlyoffice.yaml"
|
||||
## Enables installation of older onlyoffice versions so that older documents
|
||||
## can also be loaded and converted.
|
||||
#ONLYOFFICE_OLDEST=v6
|
||||
|
||||
46
README.md
46
README.md
@ -11,7 +11,7 @@
|
||||
* **Backups**: Yes
|
||||
* **Email**: No
|
||||
* **Tests**: No
|
||||
* **SSO**: No
|
||||
* **SSO**: Yes
|
||||
|
||||
<!-- endmetadata -->
|
||||
|
||||
@ -40,5 +40,49 @@ Then redeploy with `abra app deploy YOURAPPDOMAIN --force`.
|
||||
Now when you login as your user, and visit https://cryptpad.cctest.autonomic.zone/admin/,
|
||||
you should be able to access the admin interface for this cryptpad instance.
|
||||
|
||||
## SSO
|
||||
|
||||
SSO support is provided by `compose.sso.yml`. To enable it, add the SSO compose file and set the SSO variables in your app config:
|
||||
|
||||
```
|
||||
COMPOSE_FILE="compose.yml:compose.sso.yml"
|
||||
SSO_ENABLED=true
|
||||
```
|
||||
|
||||
On the next deploy, the [CryptPad SSO plugin](https://github.com/cryptpad/sso) will be installed automatically.
|
||||
|
||||
You also need to configure the remaining SSO environment variables for your OIDC provider:
|
||||
|
||||
- `SSO_PROVIDER_NAME` — display name shown on the login button (e.g. `Keycloak`, `Authentik`)
|
||||
- `SSO_OIDC_URL` — OIDC discovery URL for your provider
|
||||
- `SSO_CLIENT_ID` — OAuth2 client ID
|
||||
- `SSO_JWT_ALG` — JWT signing algorithm (e.g. `RS256`)
|
||||
|
||||
The client secret is stored as a Docker secret. Insert it with:
|
||||
|
||||
```
|
||||
abra app secret insert YOURAPPDOMAIN sso_client_s v1 YOUR_CLIENT_SECRET
|
||||
```
|
||||
|
||||
Then deploy (or redeploy) to apply: `abra app deploy YOURAPPDOMAIN --force`.
|
||||
|
||||
## OnlyOffice
|
||||
|
||||
OnlyOffice support is provided by `compose.onlyoffice.yaml`. Enable it by adding the compose file to your app config:
|
||||
|
||||
```
|
||||
COMPOSE_FILE="compose.yml:compose.onlyoffice.yaml"
|
||||
```
|
||||
|
||||
On the next deploy, an entrypoint wrapper (`onlyoffice-entrypoint.sh`) prepares the OnlyOffice config volume **before** CryptPad starts, then the app container runs `install-onlyoffice.sh` to download the OnlyOffice assets. Running the prep work inside the app container (rather than a separate init service) is necessary because Docker Swarm ignores `depends_on` at runtime — a sidecar init container would race the app.
|
||||
|
||||
To support opening documents created with older OnlyOffice versions, set `ONLYOFFICE_OLDEST` in your app config. This writes (or updates) `oldest_needed_version` in `onlyoffice-conf/onlyoffice.properties`, which `install-onlyoffice.sh` reads to fetch older versions in addition to the latest:
|
||||
|
||||
```
|
||||
ONLYOFFICE_OLDEST=v6
|
||||
```
|
||||
|
||||
If `ONLYOFFICE_OLDEST` is unset, `onlyoffice.properties` is left untouched (CryptPad's own default applies). Only the `oldest_needed_version` key is touched on each deploy, so any other entries in `onlyoffice.properties` are preserved. If you change `ONLYOFFICE_OLDEST` after the assets have already been downloaded, you may need to drop the `cryptpad_oo_dist` volume so `install-onlyoffice.sh` re-runs and pulls the additional versions.
|
||||
|
||||
[`abra`]: https://git.coopcloud.tech/coop-cloud/abra
|
||||
[`coop-cloud/traefik`]: https://git.coopcloud.tech/coop-cloud/traefik
|
||||
4
abra.sh
4
abra.sh
@ -1,3 +1,7 @@
|
||||
export CONFIG_VERSION=v2
|
||||
export CONFIG_JS_VERSION=v2
|
||||
export NGINX_CONF_VERSION=v1
|
||||
export SSO_ENTRYPOINT_VERSION=v6
|
||||
export SSO_JS_VERSION=v3
|
||||
export APP_CONFIG_JS_VERSION=v1
|
||||
export ONLYOFFICE_ENTRYPOINT_VERSION=v1
|
||||
|
||||
24
application_config.js.tmpl
Normal file
24
application_config.js.tmpl
Normal file
@ -0,0 +1,24 @@
|
||||
// CryptPad application customization — generated from environment variables
|
||||
// See https://docs.cryptpad.org/en/admin_guide/customization.html
|
||||
// For default file, see: https://github.com/cryptpad/cryptpad/blob/main/customize.dist/application_config.js
|
||||
|
||||
(() => {
|
||||
const factory = (AppConfig) => {
|
||||
{{ if eq (env "RESTRICT_GUEST_ACCESS") "true" }}
|
||||
// Block unregistered users from accessing any applications
|
||||
AppConfig.registeredOnlyTypes = AppConfig.availablePadTypes.slice();
|
||||
{{ end }}
|
||||
|
||||
return AppConfig;
|
||||
};
|
||||
|
||||
// Do not change code below
|
||||
if (typeof(module) !== 'undefined' && module.exports) {
|
||||
module.exports = factory(
|
||||
require('../www/common/application_config_internal.js')
|
||||
);
|
||||
} else if ((typeof(define) !== 'undefined' && define !== null) && (define.amd !== null)) {
|
||||
define(['/common/application_config_internal.js'], factory);
|
||||
}
|
||||
|
||||
})();
|
||||
48
compose.onlyoffice.yaml
Normal file
48
compose.onlyoffice.yaml
Normal file
@ -0,0 +1,48 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
init-onlyoffice-dirs:
|
||||
image: busybox
|
||||
user: root
|
||||
command:
|
||||
- sh
|
||||
- -eu
|
||||
- -c
|
||||
- |
|
||||
mkdir -p /cryptpad/www/common/onlyoffice/dist /cryptpad/onlyoffice-conf
|
||||
chown -R 4001:4001 \
|
||||
/cryptpad/www/common/onlyoffice/dist \
|
||||
/cryptpad/onlyoffice-conf
|
||||
exec tail -f /dev/null
|
||||
volumes:
|
||||
- cryptpad_oo_dist:/cryptpad/www/common/onlyoffice/dist
|
||||
- cryptpad_oo_conf:/cryptpad/onlyoffice-conf/
|
||||
|
||||
app:
|
||||
# onlyoffice-entrypoint.sh auto-chains through /sso-entrypoint.sh if
|
||||
# compose.sso.yml is also loaded, so order of COMPOSE_FILE doesn't matter.
|
||||
entrypoint:
|
||||
- /onlyoffice-entrypoint.sh
|
||||
- /cryptpad/docker-entrypoint.sh
|
||||
environment:
|
||||
- "CPAD_INSTALL_ONLYOFFICE=yes"
|
||||
- ONLYOFFICE_OLDEST
|
||||
volumes:
|
||||
- cryptpad_oo_dist:/cryptpad/www/common/onlyoffice/dist
|
||||
- cryptpad_oo_conf:/cryptpad/onlyoffice-conf/
|
||||
configs:
|
||||
- source: onlyoffice_entrypoint
|
||||
target: /onlyoffice-entrypoint.sh
|
||||
mode: 0755
|
||||
deploy:
|
||||
labels:
|
||||
- "backupbot.backup.volumes.cryptpad_oo_dist=false"
|
||||
|
||||
volumes:
|
||||
cryptpad_oo_dist:
|
||||
cryptpad_oo_conf:
|
||||
|
||||
configs:
|
||||
onlyoffice_entrypoint:
|
||||
name: ${STACK_NAME}_onlyoffice_entrypoint_${ONLYOFFICE_ENTRYPOINT_VERSION}
|
||||
file: onlyoffice-entrypoint.sh
|
||||
41
compose.sso.yml
Normal file
41
compose.sso.yml
Normal file
@ -0,0 +1,41 @@
|
||||
---
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
entrypoint: ["/sso-entrypoint.sh", "/cryptpad/docker-entrypoint.sh"]
|
||||
environment:
|
||||
- SSO_PLUGIN_VERSION
|
||||
- "SSO_ENABLED=${SSO_ENABLED:-false}"
|
||||
- SSO_ENFORCED
|
||||
- SSO_PROVIDER_NAME
|
||||
- SSO_OIDC_URL
|
||||
- SSO_CLIENT_ID
|
||||
- SSO_JWT_ALG
|
||||
secrets:
|
||||
- sso_client_s
|
||||
volumes:
|
||||
- cryptpad_plugins:/cryptpad/lib/plugins
|
||||
configs:
|
||||
- source: sso_entrypoint
|
||||
target: /sso-entrypoint.sh
|
||||
mode: 0755
|
||||
- source: sso_js
|
||||
target: /sso.js
|
||||
|
||||
volumes:
|
||||
cryptpad_plugins:
|
||||
|
||||
secrets:
|
||||
sso_client_s:
|
||||
external: true
|
||||
name: ${STACK_NAME}_sso_client_s_${SSO_CLIENT_SECRET_VERSION}
|
||||
|
||||
configs:
|
||||
sso_entrypoint:
|
||||
name: ${STACK_NAME}_sso_entrypoint_${SSO_ENTRYPOINT_VERSION}
|
||||
file: sso-entrypoint.sh
|
||||
sso_js:
|
||||
name: ${STACK_NAME}_sso_js_${SSO_JS_VERSION}
|
||||
file: sso.js.tmpl
|
||||
template_driver: golang
|
||||
16
compose.yml
16
compose.yml
@ -3,7 +3,8 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: cryptpad/cryptpad:version-2026.2.0
|
||||
image: cryptpad/cryptpad:version-2026.5.1
|
||||
command: ["npm", "start"]
|
||||
networks:
|
||||
- backend
|
||||
environment:
|
||||
@ -15,7 +16,7 @@ services:
|
||||
- "CPAD_HTTP2_DISABLE=true"
|
||||
- "CPAD_TRUST_PROXY=1"
|
||||
- "CPAD_CONF=/cryptpad/config/config.js"
|
||||
|
||||
- "RESTRICT_GUEST_ACCESS=${RESTRICT_GUEST_ACCESS:-false}"
|
||||
volumes:
|
||||
- cryptpad_blob:/cryptpad/blob
|
||||
- cryptpad_block:/cryptpad/block
|
||||
@ -26,6 +27,8 @@ services:
|
||||
configs:
|
||||
- source: config_js
|
||||
target: /cryptpad/config/config.js
|
||||
- source: app_config_js
|
||||
target: /cryptpad/customize/application_config.js
|
||||
|
||||
deploy:
|
||||
restart_policy:
|
||||
@ -33,9 +36,8 @@ services:
|
||||
labels:
|
||||
- "traefik.enable=false"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.5.0+v2026.2.0"
|
||||
- "coop-cloud.${STACK_NAME}.version=0.6.0+v2026.5.1"
|
||||
- "backupbot.backup=true"
|
||||
- "backupbot.backup.volumes.cryptpad_config=false"
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:3000"]
|
||||
interval: 30s
|
||||
@ -44,7 +46,7 @@ services:
|
||||
start_period: 1m
|
||||
|
||||
web:
|
||||
image: nginx:1.29
|
||||
image: nginx:1.31
|
||||
configs:
|
||||
- source: nginx_conf
|
||||
target: /etc/nginx/conf.d/default.conf
|
||||
@ -87,3 +89,7 @@ configs:
|
||||
name: ${STACK_NAME}_nginx_conf_${NGINX_CONF_VERSION}
|
||||
file: nginx.conf.tmpl
|
||||
template_driver: golang
|
||||
app_config_js:
|
||||
name: ${STACK_NAME}_app_config_js_${APP_CONFIG_JS_VERSION}
|
||||
file: application_config.js.tmpl
|
||||
template_driver: golang
|
||||
|
||||
42
onlyoffice-entrypoint.sh
Normal file
42
onlyoffice-entrypoint.sh
Normal file
@ -0,0 +1,42 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# OnlyOffice init — runs before the original CryptPad entrypoint.
|
||||
# Ensures oldest_needed_version in onlyoffice.properties matches
|
||||
# ONLYOFFICE_OLDEST before install-onlyoffice.sh / CryptPad reads it.
|
||||
|
||||
CONF_DIR="/cryptpad/onlyoffice-conf"
|
||||
PROPS="${CONF_DIR}/onlyoffice.properties"
|
||||
|
||||
# Wait for init-onlyoffice-dirs to chown the volumes. Swarm ignores
|
||||
# depends_on, so the init sidecar and this container start in parallel.
|
||||
waited=0
|
||||
while [ ! -w "${CONF_DIR}" ]; do
|
||||
if [ "${waited}" -ge 60 ]; then
|
||||
echo "[onlyoffice-entrypoint] timed out waiting for ${CONF_DIR} to become writable" >&2
|
||||
exit 1
|
||||
fi
|
||||
echo "[onlyoffice-entrypoint] waiting for ${CONF_DIR} to be writable (${waited}s)"
|
||||
sleep 1
|
||||
waited=$((waited + 1))
|
||||
done
|
||||
|
||||
if [ -n "${ONLYOFFICE_OLDEST:-}" ]; then
|
||||
mkdir -p "${CONF_DIR}"
|
||||
touch "${PROPS}"
|
||||
if grep -q '^oldest_needed_version=' "${PROPS}"; then
|
||||
sed -i "s|^oldest_needed_version=.*|oldest_needed_version=${ONLYOFFICE_OLDEST}|" "${PROPS}"
|
||||
else
|
||||
echo "oldest_needed_version=${ONLYOFFICE_OLDEST}" >> "${PROPS}"
|
||||
fi
|
||||
echo "[onlyoffice-entrypoint] oldest_needed_version=${ONLYOFFICE_OLDEST}"
|
||||
else
|
||||
echo "[onlyoffice-entrypoint] ONLYOFFICE_OLDEST unset, leaving ${PROPS} untouched"
|
||||
fi
|
||||
|
||||
# Chain through the SSO entrypoint if compose.sso.yml mounted it.
|
||||
if [ -x /sso-entrypoint.sh ]; then
|
||||
exec /sso-entrypoint.sh "$@"
|
||||
fi
|
||||
|
||||
exec "$@"
|
||||
6
renovate.json
Normal file
6
renovate.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
||||
37
sso-entrypoint.sh
Normal file
37
sso-entrypoint.sh
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# SSO plugin installer — runs before the original CryptPad entrypoint.
|
||||
# Clones the cryptpad/sso plugin into the plugins volume if not already present
|
||||
# or if the version has changed.
|
||||
|
||||
# Skips SSO setup entirely when SSO_ENABLED is not "true".
|
||||
if [ "${SSO_ENABLED}" != "true" ]; then
|
||||
echo "[sso-entrypoint] SSO not enabled, skipping plugin install"
|
||||
exec "$@"
|
||||
fi
|
||||
|
||||
PLUGIN_DIR="/cryptpad/lib/plugins/sso"
|
||||
VERSION_FILE="${PLUGIN_DIR}/.version"
|
||||
SSO_PLUGIN_VERSION="${SSO_PLUGIN_VERSION:-0.4.0}"
|
||||
|
||||
# Copy SSO config template into place (mounted as Docker config)
|
||||
if [ -f /sso.js ]; then
|
||||
cp /sso.js /cryptpad/config/sso.js
|
||||
echo "[sso-entrypoint] Copied sso.js config into /cryptpad/config/sso.js"
|
||||
fi
|
||||
|
||||
# Install/update the SSO plugin
|
||||
if [ -f "${VERSION_FILE}" ] && [ "$(cat "${VERSION_FILE}")" = "${SSO_PLUGIN_VERSION}" ]; then
|
||||
echo "[sso-entrypoint] SSO plugin ${SSO_PLUGIN_VERSION} already installed"
|
||||
else
|
||||
echo "[sso-entrypoint] Installing SSO plugin ${SSO_PLUGIN_VERSION} ..."
|
||||
rm -rf "${PLUGIN_DIR}"
|
||||
git clone --depth 1 --branch "${SSO_PLUGIN_VERSION}" \
|
||||
https://github.com/cryptpad/sso.git "${PLUGIN_DIR}"
|
||||
echo "${SSO_PLUGIN_VERSION}" > "${VERSION_FILE}"
|
||||
echo "[sso-entrypoint] SSO plugin installed"
|
||||
fi
|
||||
|
||||
# Hand off to the original CryptPad entrypoint
|
||||
exec "$@"
|
||||
21
sso.js.tmpl
Normal file
21
sso.js.tmpl
Normal file
@ -0,0 +1,21 @@
|
||||
// CryptPad SSO configuration — generated from environment variables
|
||||
// See https://github.com/cryptpad/sso for documentation
|
||||
|
||||
module.exports = {
|
||||
enabled: "{{ env "SSO_ENABLED" }}" === "true",
|
||||
enforced: "{{ env "SSO_ENFORCED" }}" === "true",
|
||||
cpPassword: true,
|
||||
forceCpPassword: false,
|
||||
list: [
|
||||
{
|
||||
name: "{{ env "SSO_PROVIDER_NAME" }}",
|
||||
type: "oidc",
|
||||
url: "{{ env "SSO_OIDC_URL" }}",
|
||||
client_id: "{{ env "SSO_CLIENT_ID" }}",
|
||||
client_secret: "{{ secret "sso_client_s" }}",
|
||||
id_token_alg: "{{ env "SSO_JWT_ALG" }}",
|
||||
use_pkce: true,
|
||||
use_nonce: true
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user