mirror of
https://github.com/opencloud-eu/opencloud-compose.git
synced 2026-06-08 20:20:04 +08:00
Compare commits
53 Commits
add-custom
...
pin_postgr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27aa8f40f1 | ||
|
|
b7078d309b | ||
|
|
c2cd669fc1 | ||
|
|
9a3a217c78 | ||
|
|
7cd7e19d6f | ||
|
|
311670fc14 | ||
|
|
97fbdbe85f | ||
|
|
fe3497ec51 | ||
|
|
c8557c3455 | ||
|
|
779c4e1daf | ||
|
|
bfc2a64a79 | ||
|
|
f6d384b411 | ||
|
|
1c1ccef59c | ||
|
|
487b73f0b3 | ||
|
|
d94ac7a036 | ||
|
|
81904c946a | ||
|
|
55021b319a | ||
|
|
817244159c | ||
|
|
4978313c41 | ||
|
|
29b44b0c78 | ||
|
|
5d5b9d56bf | ||
|
|
eba7ee156e | ||
|
|
3e25f30a59 | ||
|
|
95780abbb1 | ||
|
|
516632bc7c | ||
|
|
c5f7c6bb24 | ||
|
|
ecfb9248ef | ||
|
|
8283fcdaed | ||
|
|
408915d4b8 | ||
|
|
0499302058 | ||
|
|
bd8188c9df | ||
|
|
3a39f8a26b | ||
|
|
66816a3189 | ||
|
|
ead601d1f5 | ||
|
|
c01f0f7efb | ||
|
|
35a47c394e | ||
|
|
0007b3b191 | ||
|
|
506309f3e2 | ||
|
|
42d0981b9e | ||
|
|
f32aada40f | ||
|
|
94c3703aca | ||
|
|
0cac885a9e | ||
|
|
973bffaf9e | ||
|
|
9141607bfe | ||
|
|
f90b6ecc2e | ||
|
|
ef9516626e | ||
|
|
b63e6a8e32 | ||
|
|
d1dc30ac29 | ||
|
|
82f1377a9c | ||
|
|
358bc5feed | ||
|
|
a872a89cc7 | ||
|
|
803d400170 | ||
|
|
557b1c33ea |
69
.env.example
69
.env.example
@@ -10,7 +10,7 @@ INSECURE=true
|
|||||||
## Features ##
|
## Features ##
|
||||||
# The following variable is a convenience variable to enable or disable features of this compose project.
|
# The following variable is a convenience variable to enable or disable features of this compose project.
|
||||||
# Example: if you want to use traefik and letsencrypt, you can set the variable to
|
# Example: if you want to use traefik and letsencrypt, you can set the variable to
|
||||||
# COMPOSE_FILE=docker-compose.yml:docker-compose.traefik.yml
|
#COMPOSE_FILE=docker-compose.yml:traefik/opencloud.yml
|
||||||
# This enables you to just run `docker compose up -d` and the compose files will be added to the stack.
|
# This enables you to just run `docker compose up -d` and the compose files will be added to the stack.
|
||||||
# As alternative approach you can run `docker compose -f docker-compose.yml -f docker-compose.traefik.yml up -d`
|
# As alternative approach you can run `docker compose -f docker-compose.yml -f docker-compose.traefik.yml up -d`
|
||||||
# Default: OpenCloud and Collabora with traefik and letsencypt
|
# Default: OpenCloud and Collabora with traefik and letsencypt
|
||||||
@@ -45,6 +45,27 @@ TRAEFIK_ACME_MAIL=
|
|||||||
# When certificates are displayed and are emitted by # "Fake LE Intermediate X1",
|
# When certificates are displayed and are emitted by # "Fake LE Intermediate X1",
|
||||||
# the process went well and the envvar can be reset to empty to get valid certificates.
|
# the process went well and the envvar can be reset to empty to get valid certificates.
|
||||||
TRAEFIK_ACME_CASERVER=
|
TRAEFIK_ACME_CASERVER=
|
||||||
|
# Enable the Traefik ACME (Automatic Certificate Management Environment) for automatic SSL certificate management.
|
||||||
|
TRAEFIK_SERVICES_TLS_CONFIG="tls.certresolver=letsencrypt"
|
||||||
|
# Enable Traefik to use local certificates.
|
||||||
|
#TRAEFIK_SERVICES_TLS_CONFIG="tls=true"
|
||||||
|
# You also need to provide a config file in ./config/traefik/dynamic/certs.yml
|
||||||
|
# Example:
|
||||||
|
# cat ./config/traefik/dynamic/certs.yml
|
||||||
|
# tls:
|
||||||
|
# certificates:
|
||||||
|
# - certFile: /certs/opencloud.test.crt
|
||||||
|
# keyFile: /certs/opencloud.test.key
|
||||||
|
# stores:
|
||||||
|
# - default
|
||||||
|
#
|
||||||
|
# The certificates need to copied into ./certs/, the absolute path inside the container is /certs/.
|
||||||
|
# You can also use TRAEFIK_CERTS_DIR=/path/on/host to set the path to the certificates directory.
|
||||||
|
# Enable the access log for Traefik by setting the following variable to true.
|
||||||
|
TRAEFIK_ACCESS_LOG=
|
||||||
|
# Configure the log level for Traefik.
|
||||||
|
# Possible values are "TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL" and "PANIC". Default is "ERROR".
|
||||||
|
TRAEFIK_LOG_LEVEL=
|
||||||
|
|
||||||
|
|
||||||
## OpenCloud Settings ##
|
## OpenCloud Settings ##
|
||||||
@@ -64,6 +85,14 @@ OC_DOMAIN=
|
|||||||
# If demo users is set to "true", the following user accounts are created automatically:
|
# If demo users is set to "true", the following user accounts are created automatically:
|
||||||
# alan, mary, margaret, dennis and lynn - the password is 'demo' for all.
|
# alan, mary, margaret, dennis and lynn - the password is 'demo' for all.
|
||||||
DEMO_USERS=
|
DEMO_USERS=
|
||||||
|
# Admin Password for the OpenCloud admin user.
|
||||||
|
# NOTE: This is only needed when using the built-in LDAP server (idm).
|
||||||
|
# If you are using an external LDAP server, the admin password is managed by the LDAP server.
|
||||||
|
# NOTE: This variable needs to be set before the first start of OpenCloud. Changes to this variable after the first start will be IGNORED.
|
||||||
|
# If not set, opencloud will not work properly. The container will be restarting.
|
||||||
|
# After the first initialization, the admin password can only be changed via the OpenCloud User Settings UI or by using the OpenCloud CLI.
|
||||||
|
# Documentation: https://docs.opencloud.eu/docs/admin/resources/common-issues#-change-admin-password-set-in-env
|
||||||
|
INITIAL_ADMIN_PASSWORD=
|
||||||
# Define the openCloud loglevel used.
|
# Define the openCloud loglevel used.
|
||||||
#
|
#
|
||||||
LOG_LEVEL=
|
LOG_LEVEL=
|
||||||
@@ -85,15 +114,9 @@ LOG_LEVEL=
|
|||||||
# NOTE: you need to restart the openCloud container to load the new extensions.
|
# NOTE: you need to restart the openCloud container to load the new extensions.
|
||||||
# OC_APPS_DIR=/your/local/opencloud/apps
|
# OC_APPS_DIR=/your/local/opencloud/apps
|
||||||
|
|
||||||
## OpenCloud Admin Password ##
|
# Define the ldap-server storage location. Set the paths for config and data to a local path.
|
||||||
# The password for the OpenCloud admin user.
|
# LDAP_CERTS_DIR=
|
||||||
# The admin user password is randomly generated on the first start of OpenCloud.
|
# LDAP_DATA_DIR=
|
||||||
# It will be printed to the console. You can access it by running the following command:
|
|
||||||
# `docker compose logs opencloud | grep -B 1 -A 4 "generated OpenCloud Config"`
|
|
||||||
# The password is stored in the OpenCloud configuration file.
|
|
||||||
# It can only be changed via the OpenCloud User Settings UI or by using the OpenCloud CLI.
|
|
||||||
# https://docs.opencloud.eu/docs/admin/resources/common-issues#-change-admin-password-set-in-env
|
|
||||||
|
|
||||||
|
|
||||||
# S3 Storage configuration - optional
|
# S3 Storage configuration - optional
|
||||||
# OpenCloud supports S3 storage as primary storage.
|
# OpenCloud supports S3 storage as primary storage.
|
||||||
@@ -111,12 +134,6 @@ DECOMPOSEDS3_ACCESS_KEY=
|
|||||||
DECOMPOSEDS3_SECRET_KEY=
|
DECOMPOSEDS3_SECRET_KEY=
|
||||||
# S3 bucket. Defaults to "opencloud"
|
# S3 bucket. Defaults to "opencloud"
|
||||||
DECOMPOSEDS3_BUCKET=
|
DECOMPOSEDS3_BUCKET=
|
||||||
#
|
|
||||||
# For testing purposes, add local minio S3 storage to the docker-compose file.
|
|
||||||
# The leading colon is required to enable the service.
|
|
||||||
#DECOMPOSEDS3_MINIO=:minio.yml
|
|
||||||
# Minio domain. Defaults to "minio.opencloud.test".
|
|
||||||
MINIO_DOMAIN=
|
|
||||||
|
|
||||||
|
|
||||||
# Define SMTP settings if you would like to send OpenCloud email notifications.
|
# Define SMTP settings if you would like to send OpenCloud email notifications.
|
||||||
@@ -154,8 +171,8 @@ START_ADDITIONAL_SERVICES="notifications"
|
|||||||
# Tika (search) is disabled by default due to performance reasons.
|
# Tika (search) is disabled by default due to performance reasons.
|
||||||
# Tika is used to extract metadata and text from various file formats.
|
# Tika is used to extract metadata and text from various file formats.
|
||||||
# Enable it by adding the following to the COMPOSE_FILE variable:
|
# Enable it by adding the following to the COMPOSE_FILE variable:
|
||||||
# tika/tika.yml or by using the following command:
|
# search/tika.yml or by using the following command:
|
||||||
# docker compose -f docker-compose.yml -f tika/tika.yml up -d
|
# docker compose -f docker-compose.yml -f search/tika.yml up -d
|
||||||
# Set the desired docker image tag or digest.
|
# Set the desired docker image tag or digest.
|
||||||
# Defaults to "apache/tika:latest-full"
|
# Defaults to "apache/tika:latest-full"
|
||||||
TIKA_IMAGE=
|
TIKA_IMAGE=
|
||||||
@@ -259,7 +276,7 @@ IDP_DOMAIN=
|
|||||||
# We need the complete URL, including the protocol (http or https) and the realm.
|
# We need the complete URL, including the protocol (http or https) and the realm.
|
||||||
# Example: "https://keycloak.opencloud.test/realms/openCloud"
|
# Example: "https://keycloak.opencloud.test/realms/openCloud"
|
||||||
IDP_ISSUER_URL=
|
IDP_ISSUER_URL=
|
||||||
# Url of the account endit page from your Identity Provider.
|
# Url of the account edit page from your Identity Provider.
|
||||||
IDP_ACCOUNT_URL=
|
IDP_ACCOUNT_URL=
|
||||||
|
|
||||||
## Shared User Directory Mode ##
|
## Shared User Directory Mode ##
|
||||||
@@ -274,3 +291,17 @@ KEYCLOAK_ADMIN_PASSWORD=
|
|||||||
KC_DB_USERNAME=
|
KC_DB_USERNAME=
|
||||||
# Keycloak Database password. Defaults to "keycloak".
|
# Keycloak Database password. Defaults to "keycloak".
|
||||||
KC_DB_PASSWORD=
|
KC_DB_PASSWORD=
|
||||||
|
|
||||||
|
### Radicale Setting ###
|
||||||
|
# Radicale is a small open-source CalDAV (calendars, to-do lists) and CardDAV (contacts) server.
|
||||||
|
# When enabled OpenCloud is configured as a reverse proxy for Radicale, providing all authenticated
|
||||||
|
# OpenCloud users access to a Personal Calendar and Addressbook
|
||||||
|
# Docker image to use for the Radicale Container
|
||||||
|
#RADICALE_DOCKER_IMAGE=opencloudeu/radicale
|
||||||
|
# Docker tag to pull for the Radicale Container
|
||||||
|
#RADICALE_DOCKER_TAG=latest
|
||||||
|
# Define the storage location for the Radicale data. Set the path to a local path.
|
||||||
|
# Ensure that the configuration and data directories are owned by the user and group with ID 1000:1000.
|
||||||
|
# This matches the default user inside the container and avoids permission issues when accessing files.
|
||||||
|
# Leaving it default stores data in docker internal volumes.
|
||||||
|
#RADICALE_DATA_DIR=/your/local/radicale/data
|
||||||
|
|||||||
11
.gitignore
vendored
11
.gitignore
vendored
@@ -3,7 +3,16 @@
|
|||||||
.env
|
.env
|
||||||
|
|
||||||
# exclude the apps folder
|
# exclude the apps folder
|
||||||
/config/opencloud/apps
|
/config/opencloud/apps/*
|
||||||
|
!/config/opencloud/apps/.gitkeep
|
||||||
|
|
||||||
# exclude custom compose files
|
# exclude custom compose files
|
||||||
/custom
|
/custom
|
||||||
|
|
||||||
|
# exclude certificates
|
||||||
|
/certs/*
|
||||||
|
!/certs/.gitkeep
|
||||||
|
|
||||||
|
# exclude the certificates config folder
|
||||||
|
/config/traefik/dynamic/*
|
||||||
|
!/config/traefik/dynamic/.gitkeep
|
||||||
|
|||||||
167
README.md
167
README.md
@@ -6,12 +6,13 @@ This repository provides Docker Compose configurations for deploying OpenCloud i
|
|||||||
|
|
||||||
OpenCloud Compose offers a modular approach to deploying OpenCloud with several configuration options:
|
OpenCloud Compose offers a modular approach to deploying OpenCloud with several configuration options:
|
||||||
|
|
||||||
- **Standard deployment** with Traefik reverse proxy and Let's Encrypt certificates
|
- **Standard deployment** with Traefik reverse proxy and Let's Encrypt certificates or certificates from files
|
||||||
- **External proxy** support for environments with existing reverse proxies (like Nginx, Caddy, etc.)
|
- **External proxy** support for environments with existing reverse proxies (like Nginx, Caddy, etc.)
|
||||||
- **Collabora Online** integration for document editing
|
- **Collabora Online** integration for document editing
|
||||||
- **Keycloak and LDAP** integration for centralized identity management
|
- **Keycloak and LDAP** integration for centralized identity management
|
||||||
- **Full text search** with Apache Tika for content extraction and metadata analysis
|
- **Full text search** with Apache Tika for content extraction and metadata analysis
|
||||||
- **Monitoring** with metrics endpoints for observability and performance monitoring
|
- **Monitoring** with metrics endpoints for observability and performance monitoring
|
||||||
|
- **Radicale** integration for Calendar and Contacts
|
||||||
|
|
||||||
## Quick Start Guide
|
## Quick Start Guide
|
||||||
|
|
||||||
@@ -39,14 +40,17 @@ OpenCloud Compose offers a modular approach to deploying OpenCloud with several
|
|||||||
|
|
||||||
> **Note**: The repository includes `.env.example` as a template with default settings and documentation. Your actual `.env` file is excluded from version control (via `.gitignore`) to prevent accidentally committing sensitive information like passwords and domain-specific settings.
|
> **Note**: The repository includes `.env.example` as a template with default settings and documentation. Your actual `.env` file is excluded from version control (via `.gitignore`) to prevent accidentally committing sensitive information like passwords and domain-specific settings.
|
||||||
|
|
||||||
3. **Configure deployment options**:
|
3. **Set admin password**:
|
||||||
|
set `INITIAL_ADMIN_PASSWORD=your_secure_password` environment variable in your `.env` file
|
||||||
|
|
||||||
|
4. **Configure deployment options**:
|
||||||
|
|
||||||
You can deploy using explicit `-f` flags:
|
You can deploy using explicit `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f traefik/opencloud.yml up -d
|
docker compose -f docker-compose.yml -f traefik/opencloud.yml up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
Or by uncommenting the `COMPOSE_FILE` variable in `.env`:
|
Or by adding the `COMPOSE_FILE` variable in `.env`:
|
||||||
```
|
```
|
||||||
COMPOSE_FILE=docker-compose.yml:traefik/opencloud.yml
|
COMPOSE_FILE=docker-compose.yml:traefik/opencloud.yml
|
||||||
```
|
```
|
||||||
@@ -56,22 +60,24 @@ OpenCloud Compose offers a modular approach to deploying OpenCloud with several
|
|||||||
docker compose up -d
|
docker compose up -d
|
||||||
```
|
```
|
||||||
|
|
||||||
4. **Add local domains to `/etc/hosts`**:
|
5. **Add local domains to `/etc/hosts`** (for local development only):
|
||||||
```
|
```
|
||||||
127.0.0.1 cloud.opencloud.test
|
127.0.0.1 cloud.opencloud.test
|
||||||
127.0.0.1 traefik.opencloud.test
|
127.0.0.1 traefik.opencloud.test
|
||||||
127.0.0.1 keycloak.opencloud.test
|
127.0.0.1 keycloak.opencloud.test
|
||||||
```
|
```
|
||||||
|
|
||||||
5. **Access OpenCloud**:
|
6. **Access OpenCloud**:
|
||||||
- URL: https://cloud.opencloud.test
|
- URL: https://cloud.opencloud.test
|
||||||
- Username: `admin`
|
- Username: `admin`
|
||||||
- Password: `admin` (or as configured in `.env`)
|
- Password: value of your `INITIAL_ADMIN_PASSWORD`
|
||||||
|
|
||||||
### Production Deployment
|
### Production Deployment
|
||||||
|
|
||||||
|
> **DNS Requirements**: For production deployments, you need real DNS entries pointing to your server for all required subdomains. You can either create individual DNS A/AAAA records for each subdomain (e.g., `cloud.example.com`, `collabora.example.com`, `keycloak.example.com`) or use a wildcard DNS entry (`*.example.com`) that covers all subdomains.
|
||||||
|
|
||||||
1. **Edit the `.env` file** and configure:
|
1. **Edit the `.env` file** and configure:
|
||||||
- Domain names
|
- Domain names (replace `.opencloud.test` domains with your real domains)
|
||||||
- Admin password
|
- Admin password
|
||||||
- SSL certificate email
|
- SSL certificate email
|
||||||
- Storage paths
|
- Storage paths
|
||||||
@@ -92,6 +98,8 @@ OpenCloud Compose offers a modular approach to deploying OpenCloud with several
|
|||||||
|
|
||||||
OpenCloud can be deployed with Keycloak for identity management and LDAP for the shared user directory:
|
OpenCloud can be deployed with Keycloak for identity management and LDAP for the shared user directory:
|
||||||
|
|
||||||
|
> **DNS Requirements**: This setup requires DNS entries for both the main OpenCloud domain and the Keycloak subdomain. Configure DNS A/AAAA records for your domains (e.g., `cloud.example.com`, `keycloak.example.com`) or use a wildcard DNS entry (`*.example.com`).
|
||||||
|
|
||||||
Using `-f` flags:
|
Using `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f idm/ldap-keycloak.yml -f traefik/opencloud.yml -f traefik/ldap-keycloak.yml up -d
|
docker compose -f docker-compose.yml -f idm/ldap-keycloak.yml -f traefik/opencloud.yml -f traefik/ldap-keycloak.yml up -d
|
||||||
@@ -102,10 +110,10 @@ Or by setting in `.env`:
|
|||||||
COMPOSE_FILE=docker-compose.yml:idm/ldap-keycloak.yml:traefik/opencloud.yml:traefik/ldap-keycloak.yml
|
COMPOSE_FILE=docker-compose.yml:idm/ldap-keycloak.yml:traefik/opencloud.yml:traefik/ldap-keycloak.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
Add to `/etc/hosts` for local development:
|
> **For local development only**: Add to `/etc/hosts`:
|
||||||
```
|
> ```
|
||||||
127.0.0.1 keycloak.opencloud.test
|
> 127.0.0.1 keycloak.opencloud.test
|
||||||
```
|
> ```
|
||||||
|
|
||||||
This setup includes:
|
This setup includes:
|
||||||
- Keycloak for authentication and identity management
|
- Keycloak for authentication and identity management
|
||||||
@@ -116,6 +124,8 @@ This setup includes:
|
|||||||
|
|
||||||
Include Collabora for document editing using either method:
|
Include Collabora for document editing using either method:
|
||||||
|
|
||||||
|
> **DNS Requirements**: This setup requires DNS entries for the main OpenCloud domain, Collabora subdomain, and WOPI server subdomain. Configure DNS A/AAAA records for your domains (e.g., `cloud.example.com`, `collabora.example.com`, `wopiserver.example.com`) or use a wildcard DNS entry (`*.example.com`).
|
||||||
|
|
||||||
Using `-f` flags:
|
Using `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f weboffice/collabora.yml -f traefik/opencloud.yml -f traefik/collabora.yml up -d
|
docker compose -f docker-compose.yml -f weboffice/collabora.yml -f traefik/opencloud.yml -f traefik/collabora.yml up -d
|
||||||
@@ -126,16 +136,18 @@ Or by setting in `.env`:
|
|||||||
COMPOSE_FILE=docker-compose.yml:weboffice/collabora.yml:traefik/opencloud.yml:traefik/collabora.yml
|
COMPOSE_FILE=docker-compose.yml:weboffice/collabora.yml:traefik/opencloud.yml:traefik/collabora.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
Add to `/etc/hosts` for local development:
|
> **For local development only**: Add to `/etc/hosts`:
|
||||||
```
|
> ```
|
||||||
127.0.0.1 collabora.opencloud.test
|
> 127.0.0.1 collabora.opencloud.test
|
||||||
127.0.0.1 wopiserver.opencloud.test
|
> 127.0.0.1 wopiserver.opencloud.test
|
||||||
```
|
> ```
|
||||||
|
|
||||||
### With Full Text Search
|
### With Full Text Search
|
||||||
|
|
||||||
Enable full text search capabilities with Apache Tika using either method:
|
Enable full text search capabilities with Apache Tika using either method:
|
||||||
|
|
||||||
|
> **DNS Requirements**: This setup requires DNS entries for the main OpenCloud domain. Configure a DNS A/AAAA record for your domain (e.g., `cloud.example.com`) or use a wildcard DNS entry (`*.example.com`).
|
||||||
|
|
||||||
Using `-f` flags:
|
Using `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f search/tika.yml -f traefik/opencloud.yml up -d
|
docker compose -f docker-compose.yml -f search/tika.yml -f traefik/opencloud.yml up -d
|
||||||
@@ -151,10 +163,32 @@ This setup includes:
|
|||||||
- Full text search functionality in the OpenCloud interface
|
- Full text search functionality in the OpenCloud interface
|
||||||
- Support for documents, PDFs, images, and other file types
|
- Support for documents, PDFs, images, and other file types
|
||||||
|
|
||||||
|
### With Radicale
|
||||||
|
|
||||||
|
Enable CalDAV (calendars, to-do lists) and CardDAV (contacts) server.
|
||||||
|
|
||||||
|
> **DNS Requirements**: This setup requires DNS entries for the main OpenCloud domain. Configure a DNS A/AAAA record for your domain (e.g., `cloud.example.com`) or use a wildcard DNS entry (`*.example.com`).
|
||||||
|
|
||||||
|
Using `-f` flags:
|
||||||
|
```bash
|
||||||
|
docker compose -f docker-compose.yml -f radicale/radicale.yml -f traefik/opencloud.yml up -d
|
||||||
|
```
|
||||||
|
|
||||||
|
Or by setting in `.env`:
|
||||||
|
```
|
||||||
|
COMPOSE_FILE=docker-compose.yml:radicale/radicale.yml:traefik/opencloud.yml
|
||||||
|
```
|
||||||
|
|
||||||
|
This setup includes:
|
||||||
|
- Radicale as a CalDAV (calendars, to-do lists) and CardDAV (contacts) server
|
||||||
|
- Users access to a Personal Calendar and Addressbook
|
||||||
|
|
||||||
### With Monitoring
|
### With Monitoring
|
||||||
|
|
||||||
Enable monitoring capabilities with metrics endpoints using either method:
|
Enable monitoring capabilities with metrics endpoints using either method:
|
||||||
|
|
||||||
|
> **DNS Requirements**: This setup requires DNS entries for the main OpenCloud domain. Configure a DNS A/AAAA record for your domain (e.g., `cloud.example.com`) or use a wildcard DNS entry (`*.example.com`).
|
||||||
|
|
||||||
Using `-f` flags:
|
Using `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f monitoring/monitoring.yml -f traefik/opencloud.yml up -d
|
docker compose -f docker-compose.yml -f monitoring/monitoring.yml -f traefik/opencloud.yml up -d
|
||||||
@@ -184,6 +218,8 @@ Access metrics endpoints:
|
|||||||
|
|
||||||
If you already have a reverse proxy (Nginx, Caddy, etc.), use either method:
|
If you already have a reverse proxy (Nginx, Caddy, etc.), use either method:
|
||||||
|
|
||||||
|
> **DNS Requirements**: When using an external proxy, you need to configure your external proxy to handle DNS and SSL termination. Ensure your DNS entries point to your external proxy server, and configure your proxy to forward requests to the exposed OpenCloud ports.
|
||||||
|
|
||||||
Using `-f` flags:
|
Using `-f` flags:
|
||||||
```bash
|
```bash
|
||||||
docker compose -f docker-compose.yml -f weboffice/collabora.yml -f external-proxy/opencloud.yml -f external-proxy/collabora.yml up -d
|
docker compose -f docker-compose.yml -f weboffice/collabora.yml -f external-proxy/opencloud.yml -f external-proxy/collabora.yml up -d
|
||||||
@@ -199,12 +235,82 @@ This exposes the necessary ports:
|
|||||||
- Collabora: 9980
|
- Collabora: 9980
|
||||||
- WOPI server: 9300
|
- WOPI server: 9300
|
||||||
|
|
||||||
|
|
||||||
**Please note:**
|
**Please note:**
|
||||||
If you're using **Nginx Proxy Manager (NPM)**, you **should NOT** activate **"Block Common Exploits"** for the Proxy Host.
|
If you're using **Nginx Proxy Manager (NPM)**, you **should NOT** activate **"Block Common Exploits"** for the Proxy Host.
|
||||||
Otherwise, the desktop app authentication will return **error 403 Forbidden**.
|
Otherwise, the desktop app authentication will return **error 403 Forbidden**.
|
||||||
|
|
||||||
|
|
||||||
|
## SSL Certificate Support
|
||||||
|
|
||||||
|
OpenCloud Compose supports adding SSL certificates for public domains and development environments. This feature enables you to use the "Let's Encrypt ACME challenge" to generate certificates for your public domains as well as using your own certificates.
|
||||||
|
|
||||||
|
### Use Let's Encrypt with ACME Challenge
|
||||||
|
|
||||||
|
1. **Enable Let's Encrypt**:
|
||||||
|
- Set `TRAEFIK_LETSENCRYPT_EMAIL` to your email address for the ACME challenge
|
||||||
|
- Set `TRAEFIK_SERVICES_TLS_CONFIG="tls.certresolver=letsencrypt"` to use Let's Encrypt (default value)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# In your .env file
|
||||||
|
TRAEFIK_LETSENCRYPT_EMAIL=devops@your-domain.tld
|
||||||
|
TRAEFIK_SERVICES_TLS_CONFIG="tls.certresolver=letsencrypt"
|
||||||
|
```
|
||||||
|
|
||||||
|
### Use Certificates from the `certs/` directory
|
||||||
|
|
||||||
|
1. **Place your certificates**:
|
||||||
|
- Copy your certificate files (`.crt`, `.pem`, `.key`) to the `certs/` directory
|
||||||
|
- The directory structure is flexible - organize as needed for your setup
|
||||||
|
|
||||||
|
2. **Configure Traefik dynamic configuration**:
|
||||||
|
- Place Traefik dynamic configuration files in `config/traefik/dynamic/`
|
||||||
|
|
||||||
|
Example `config/traefik/dynamic/certs.yml`:
|
||||||
|
```yaml
|
||||||
|
tls:
|
||||||
|
certificates:
|
||||||
|
- certFile: /certs/opencloud.test.crt
|
||||||
|
keyFile: /certs/opencloud.test.key
|
||||||
|
stores:
|
||||||
|
- default
|
||||||
|
- certFile: /certs/wildcard.example.com.crt
|
||||||
|
keyFile: /certs/wildcard.example.com.key
|
||||||
|
stores:
|
||||||
|
- default
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Configure environment variables**:
|
||||||
|
- Set `TRAEFIK_SERVICES_TLS_CONFIG="tls=true"` to use your local certificates
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# In your .env file
|
||||||
|
TRAEFIK_SERVICES_TLS_CONFIG="tls=true"
|
||||||
|
```
|
||||||
|
|
||||||
|
The certificate directory and configuration directories are now available and automatically mounted in the containers:
|
||||||
|
- `certs/` → `/certs/` (inside the Traefik container)
|
||||||
|
- `config/traefik/dynamic/` → dynamic configuration loading
|
||||||
|
|
||||||
|
> [!TIP]
|
||||||
|
>
|
||||||
|
> **Local development or testing with mkcert**
|
||||||
|
> For local development, you can use `mkcert` to generate self-signed certificates for your local domains. This allows you to test SSL/TLS configurations without needing a public domain or Let's Encrypt. It also brings the advantage that you don't have to accept self-signed certificates in your browser all the time.
|
||||||
|
> ```bash
|
||||||
|
> # Install mkcert (if not already installed)
|
||||||
|
> # macOS: brew install mkcert
|
||||||
|
> # Linux: apt install mkcert or similar
|
||||||
|
> # Windows: choco install mkcert or download from GitHub
|
||||||
|
>
|
||||||
|
> # Install the local CA
|
||||||
|
> mkcert -install
|
||||||
|
>
|
||||||
|
> # Generate certificates for your local domains
|
||||||
|
> mkcert -cert-file certs/opencloud.test.crt -key-file certs/opencloud.test.key "*.opencloud.test" opencloud.test
|
||||||
|
> ```
|
||||||
|
|
||||||
|
> [!IMPORTANT]
|
||||||
|
> The contents of the `certs/` directory and configuration directories are ignored by git to prevent accidentally committing sensitive certificate files.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
### Environment Variables
|
### Environment Variables
|
||||||
@@ -218,9 +324,10 @@ The configuration is managed through environment variables in the `.env` file:
|
|||||||
Key variables:
|
Key variables:
|
||||||
|
|
||||||
| Variable | Description | Default |
|
| Variable | Description | Default |
|
||||||
|---------------------------|----------------------------------------------|---------------------------|
|
|-------------------------------|-------------------------------------------------------|------------------------------|
|
||||||
| `COMPOSE_FILE` | Colon-separated list of compose files to use | (commented out) |
|
| `COMPOSE_FILE` | Colon-separated list of compose files to use | (commented out) |
|
||||||
| `OC_DOMAIN` | OpenCloud domain | cloud.opencloud.test |
|
| `OC_DOMAIN` | OpenCloud domain | cloud.opencloud.test |
|
||||||
|
| `INITIAL_ADMIN_PASSWORD ` | OpenCloud password for the admin user | (no value) |
|
||||||
| `OC_DOCKER_TAG` | OpenCloud image tag | latest |
|
| `OC_DOCKER_TAG` | OpenCloud image tag | latest |
|
||||||
| `OC_CONFIG_DIR` | Config directory path | (Docker volume) |
|
| `OC_CONFIG_DIR` | Config directory path | (Docker volume) |
|
||||||
| `OC_DATA_DIR` | Data directory path | (Docker volume) |
|
| `OC_DATA_DIR` | Data directory path | (Docker volume) |
|
||||||
@@ -234,9 +341,32 @@ Key variables:
|
|||||||
| `LDAP_BIND_PASSWORD` | LDAP password for the bind user | admin |
|
| `LDAP_BIND_PASSWORD` | LDAP password for the bind user | admin |
|
||||||
| `KC_DB_USERNAME` | Database user for keycloak | keycloak |
|
| `KC_DB_USERNAME` | Database user for keycloak | keycloak |
|
||||||
| `KC_DB_PASSWORD` | Database password for keycloak | keycloak |
|
| `KC_DB_PASSWORD` | Database password for keycloak | keycloak |
|
||||||
|
| `TRAEFIK_LETSENCRYPT_EMAIL` | Email Address for the Let's Encrypt ACME challenge | example@example.org |
|
||||||
|
| `TRAEFIK_SERVICES_TLS_CONFIG` | Tell traefik and the services which TLS config to use | tls.certresolver=letsencrypt |
|
||||||
|
| `TRAEFIK_CERTS_DIR` | Directory for custom certificates. | ./certs |
|
||||||
|
|
||||||
See `.env.example` for all available options and their documentation.
|
See `.env.example` for all available options and their documentation.
|
||||||
|
|
||||||
|
### Admin Password Configuration
|
||||||
|
|
||||||
|
The `INITIAL_ADMIN_PASSWORD` environment variable is **required** for OpenCloud to work properly:
|
||||||
|
|
||||||
|
- **Only needed when using the built-in LDAP server (idm)**
|
||||||
|
- **Must be set before the first start of OpenCloud. Changes in the ENV variable after the first startup will be ignored.**
|
||||||
|
- If not set, OpenCloud will not work properly and the container will keep restarting
|
||||||
|
- After first initialization, the admin password can only be changed via:
|
||||||
|
- OpenCloud User Settings UI
|
||||||
|
- OpenCloud CLI
|
||||||
|
|
||||||
|
For external LDAP servers, the admin password is managed by the LDAP server itself.
|
||||||
|
|
||||||
|
**Important**: Set this variable in your `.env` file before starting OpenCloud for the first time:
|
||||||
|
```
|
||||||
|
INITIAL_ADMIN_PASSWORD=your-secure-password-here
|
||||||
|
```
|
||||||
|
|
||||||
|
For more details, see the [OpenCloud documentation](https://docs.opencloud.eu/docs/admin/resources/common-issues#-change-admin-password-set-in-env).
|
||||||
|
|
||||||
### Persistent Storage
|
### Persistent Storage
|
||||||
|
|
||||||
For production, configure persistent storage:
|
For production, configure persistent storage:
|
||||||
@@ -264,6 +394,7 @@ This repository uses a modular approach with multiple compose files:
|
|||||||
- `idm/` - Identity management configurations (Keycloak & LDAP)
|
- `idm/` - Identity management configurations (Keycloak & LDAP)
|
||||||
- `traefik/` - Traefik reverse proxy configurations
|
- `traefik/` - Traefik reverse proxy configurations
|
||||||
- `external-proxy/` - Configuration for external reverse proxies
|
- `external-proxy/` - Configuration for external reverse proxies
|
||||||
|
- `radicale/` - Radicale configuration
|
||||||
- `config/` - Configuration files for OpenCloud, Keycloak, and LDAP
|
- `config/` - Configuration files for OpenCloud, Keycloak, and LDAP
|
||||||
|
|
||||||
## Advanced Usage
|
## Advanced Usage
|
||||||
|
|||||||
0
certs/.gitkeep
Normal file
0
certs/.gitkeep
Normal file
@@ -2,7 +2,7 @@
|
|||||||
printenv
|
printenv
|
||||||
# replace openCloud domain and LDAP password in keycloak realm import
|
# replace openCloud domain and LDAP password in keycloak realm import
|
||||||
mkdir /opt/keycloak/data/import
|
mkdir /opt/keycloak/data/import
|
||||||
sed -e "s/cloud.opencloud.test/${OC_DOMAIN}/g" -e "s/ldap-admin-password/${LDAP_ADMIN_PASSWORD:-admin}/g" /opt/keycloak/data/import-dist/opencloud-realm.json > /opt/keycloak/data/import/opencloud-realm.json
|
sed -e "s/cloud.opencloud.test/${OC_DOMAIN}/g" -e "s/ldap-admin-password/${LDAP_ADMIN_PASSWORD:-admin}/g" /opt/keycloak/data/import-dist/openCloud-realm.json > /opt/keycloak/data/import/openCloud-realm.json
|
||||||
|
|
||||||
# run original docker-entrypoint
|
# run original docker-entrypoint
|
||||||
/opt/keycloak/bin/kc.sh "$@"
|
/opt/keycloak/bin/kc.sh "$@"
|
||||||
|
|||||||
@@ -1952,6 +1952,21 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"id": "c016f2b3-cf74-410e-a852-f6c7b49e0f5a",
|
||||||
|
"name": "Block Client Registration",
|
||||||
|
"providerId": "trusted-hosts",
|
||||||
|
"subType": "anonymous",
|
||||||
|
"subComponents": {},
|
||||||
|
"config": {
|
||||||
|
"host-sending-registration-request-must-match": [
|
||||||
|
"true"
|
||||||
|
],
|
||||||
|
"client-uris-must-match": [
|
||||||
|
"true"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"id": "5a9aef85-98a6-4e90-b30f-8aa715e1f5e6",
|
"id": "5a9aef85-98a6-4e90-b30f-8aa715e1f5e6",
|
||||||
"name": "Allowed Protocol Mapper Types",
|
"name": "Allowed Protocol Mapper Types",
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
document.addEventListener("DOMContentLoaded", function () {
|
|
||||||
//Add your custom JavaScript code here
|
|
||||||
});
|
|
||||||
@@ -2,4 +2,4 @@ parent=keycloak
|
|||||||
import=common/keycloak
|
import=common/keycloak
|
||||||
|
|
||||||
styles=css/login.css css/theme.css
|
styles=css/login.css css/theme.css
|
||||||
scripts=js/script.js js/custom.js
|
scripts=js/script.js
|
||||||
0
config/opencloud/apps/.gitkeep
Normal file
0
config/opencloud/apps/.gitkeep
Normal file
@@ -39,6 +39,7 @@ directives:
|
|||||||
script-src:
|
script-src:
|
||||||
- '''self'''
|
- '''self'''
|
||||||
- '''unsafe-inline'''
|
- '''unsafe-inline'''
|
||||||
|
- 'https://${IDP_DOMAIN|keycloak.opencloud.test}/'
|
||||||
style-src:
|
style-src:
|
||||||
- '''self'''
|
- '''self'''
|
||||||
- '''unsafe-inline'''
|
- '''unsafe-inline'''
|
||||||
|
|||||||
40
config/opencloud/proxy.yaml
Normal file
40
config/opencloud/proxy.yaml
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
# This adds four additional routes to the proxy. Forwarding
|
||||||
|
# request on '/carddav/', '/caldav/' and the respective '/.well-knwown'
|
||||||
|
# endpoints to the radicale container and setting the required headers.
|
||||||
|
additional_policies:
|
||||||
|
- name: default
|
||||||
|
routes:
|
||||||
|
- endpoint: /caldav/
|
||||||
|
backend: http://radicale:5232
|
||||||
|
remote_user_header: X-Remote-User
|
||||||
|
skip_x_access_token: true
|
||||||
|
additional_headers:
|
||||||
|
- X-Script-Name: /caldav
|
||||||
|
- endpoint: /.well-known/caldav
|
||||||
|
backend: http://radicale:5232
|
||||||
|
remote_user_header: X-Remote-User
|
||||||
|
skip_x_access_token: true
|
||||||
|
additional_headers:
|
||||||
|
- X-Script-Name: /caldav
|
||||||
|
- endpoint: /carddav/
|
||||||
|
backend: http://radicale:5232
|
||||||
|
remote_user_header: X-Remote-User
|
||||||
|
skip_x_access_token: true
|
||||||
|
additional_headers:
|
||||||
|
- X-Script-Name: /carddav
|
||||||
|
- endpoint: /.well-known/carddav
|
||||||
|
backend: http://radicale:5232
|
||||||
|
remote_user_header: X-Remote-User
|
||||||
|
skip_x_access_token: true
|
||||||
|
additional_headers:
|
||||||
|
- X-Script-Name: /carddav
|
||||||
|
# To enable the radicale web UI add this rule.
|
||||||
|
# "unprotected" is True because the Web UI itself ask for
|
||||||
|
# the password.
|
||||||
|
# Also set "type" to "internal" in the config/radicale/config
|
||||||
|
# - endpoint: /caldav/.web/
|
||||||
|
# backend: http://radicale:5232/
|
||||||
|
# unprotected: true
|
||||||
|
# skip_x_access_token: true
|
||||||
|
# additional_headers:
|
||||||
|
# - X-Script-Name: /caldav
|
||||||
325
config/radicale/config
Normal file
325
config/radicale/config
Normal file
@@ -0,0 +1,325 @@
|
|||||||
|
# -*- mode: conf -*-
|
||||||
|
# vim:ft=cfg
|
||||||
|
|
||||||
|
# Config file for Radicale - A simple calendar server
|
||||||
|
#
|
||||||
|
# Place it into /etc/radicale/config (global)
|
||||||
|
# or ~/.config/radicale/config (user)
|
||||||
|
#
|
||||||
|
# The current values are the default ones
|
||||||
|
|
||||||
|
|
||||||
|
[server]
|
||||||
|
|
||||||
|
# CalDAV server hostnames separated by a comma
|
||||||
|
# IPv4 syntax: address:port
|
||||||
|
# IPv6 syntax: [address]:port
|
||||||
|
# Hostname syntax (using "getaddrinfo" to resolve to IPv4/IPv6 adress(es)): hostname:port
|
||||||
|
# For example: 0.0.0.0:9999, [::]:9999, localhost:9999
|
||||||
|
hosts = 0.0.0.0:5232
|
||||||
|
|
||||||
|
# Max parallel connections
|
||||||
|
#max_connections = 8
|
||||||
|
|
||||||
|
# Max size of request body (bytes)
|
||||||
|
#max_content_length = 100000000
|
||||||
|
|
||||||
|
# Socket timeout (seconds)
|
||||||
|
#timeout = 30
|
||||||
|
|
||||||
|
# SSL flag, enable HTTPS protocol
|
||||||
|
#ssl = False
|
||||||
|
|
||||||
|
# SSL certificate path
|
||||||
|
#certificate = /etc/ssl/radicale.cert.pem
|
||||||
|
|
||||||
|
# SSL private key
|
||||||
|
#key = /etc/ssl/radicale.key.pem
|
||||||
|
|
||||||
|
# CA certificate for validating clients. This can be used to secure
|
||||||
|
# TCP traffic between Radicale and a reverse proxy
|
||||||
|
#certificate_authority =
|
||||||
|
|
||||||
|
# SSL protocol, secure configuration: ALL -SSLv3 -TLSv1 -TLSv1.1
|
||||||
|
#protocol = (default)
|
||||||
|
|
||||||
|
# SSL ciphersuite, secure configuration: DHE:ECDHE:-NULL:-SHA (see also "man openssl-ciphers")
|
||||||
|
#ciphersuite = (default)
|
||||||
|
|
||||||
|
# script name to strip from URI if called by reverse proxy
|
||||||
|
#script_name = (default taken from HTTP_X_SCRIPT_NAME or SCRIPT_NAME)
|
||||||
|
|
||||||
|
|
||||||
|
[encoding]
|
||||||
|
|
||||||
|
# Encoding for responding requests
|
||||||
|
#request = utf-8
|
||||||
|
|
||||||
|
# Encoding for storing local collections
|
||||||
|
#stock = utf-8
|
||||||
|
|
||||||
|
|
||||||
|
[auth]
|
||||||
|
|
||||||
|
# Authentication method
|
||||||
|
# Value: none | htpasswd | remote_user | http_x_remote_user | dovecot | ldap | oauth2 | pam | denyall
|
||||||
|
type = http_x_remote_user
|
||||||
|
|
||||||
|
# Cache logins for until expiration time
|
||||||
|
#cache_logins = false
|
||||||
|
|
||||||
|
# Expiration time for caching successful logins in seconds
|
||||||
|
#cache_successful_logins_expiry = 15
|
||||||
|
|
||||||
|
## Expiration time of caching failed logins in seconds
|
||||||
|
#cache_failed_logins_expiry = 90
|
||||||
|
|
||||||
|
# Ignore modifyTimestamp and createTimestamp attributes. Required e.g. for Authentik LDAP server
|
||||||
|
#ldap_ignore_attribute_create_modify_timestamp = false
|
||||||
|
|
||||||
|
# URI to the LDAP server
|
||||||
|
#ldap_uri = ldap://localhost
|
||||||
|
|
||||||
|
# The base DN where the user accounts have to be searched
|
||||||
|
#ldap_base = ##BASE_DN##
|
||||||
|
|
||||||
|
# The reader DN of the LDAP server
|
||||||
|
#ldap_reader_dn = CN=ldapreader,CN=Users,##BASE_DN##
|
||||||
|
|
||||||
|
# Password of the reader DN
|
||||||
|
#ldap_secret = ldapreader-secret
|
||||||
|
|
||||||
|
# Path of the file containing password of the reader DN
|
||||||
|
#ldap_secret_file = /run/secrets/ldap_password
|
||||||
|
|
||||||
|
# the attribute to read the group memberships from in the user's LDAP entry (default: not set)
|
||||||
|
#ldap_groups_attribute = memberOf
|
||||||
|
|
||||||
|
# The filter to find the DN of the user. This filter must contain a python-style placeholder for the login
|
||||||
|
#ldap_filter = (&(objectClass=person)(uid={0}))
|
||||||
|
|
||||||
|
# the attribute holding the value to be used as username after authentication
|
||||||
|
#ldap_user_attribute = cn
|
||||||
|
|
||||||
|
# Use ssl on the ldap connection
|
||||||
|
# Soon to be deprecated, use ldap_security instead
|
||||||
|
#ldap_use_ssl = False
|
||||||
|
|
||||||
|
# the encryption mode to be used: tls, starttls, default is none
|
||||||
|
#ldap_security = none
|
||||||
|
|
||||||
|
# The certificate verification mode. Works for ssl and starttls. NONE, OPTIONAL, default is REQUIRED
|
||||||
|
#ldap_ssl_verify_mode = REQUIRED
|
||||||
|
|
||||||
|
# The path to the CA file in pem format which is used to certificate the server certificate
|
||||||
|
#ldap_ssl_ca_file =
|
||||||
|
|
||||||
|
# Connection type for dovecot authentication (AF_UNIX|AF_INET|AF_INET6)
|
||||||
|
# Note: credentials are transmitted in cleartext
|
||||||
|
#dovecot_connection_type = AF_UNIX
|
||||||
|
|
||||||
|
# The path to the Dovecot client authentication socket (eg. /run/dovecot/auth-client on Fedora). Radicale must have read / write access to the socket.
|
||||||
|
#dovecot_socket = /var/run/dovecot/auth-client
|
||||||
|
|
||||||
|
# Host of via network exposed dovecot socket
|
||||||
|
#dovecot_host = localhost
|
||||||
|
|
||||||
|
# Port of via network exposed dovecot socket
|
||||||
|
#dovecot_port = 12345
|
||||||
|
|
||||||
|
# IMAP server hostname
|
||||||
|
# Syntax: address | address:port | [address]:port | imap.server.tld
|
||||||
|
#imap_host = localhost
|
||||||
|
|
||||||
|
# Secure the IMAP connection
|
||||||
|
# Value: tls | starttls | none
|
||||||
|
#imap_security = tls
|
||||||
|
|
||||||
|
# OAuth2 token endpoint URL
|
||||||
|
#oauth2_token_endpoint = <URL>
|
||||||
|
|
||||||
|
# PAM service
|
||||||
|
#pam_serivce = radicale
|
||||||
|
|
||||||
|
# PAM group user should be member of
|
||||||
|
#pam_group_membership =
|
||||||
|
|
||||||
|
# Htpasswd filename
|
||||||
|
#htpasswd_filename = /etc/radicale/users
|
||||||
|
|
||||||
|
# Htpasswd encryption method
|
||||||
|
# Value: plain | bcrypt | md5 | sha256 | sha512 | autodetect
|
||||||
|
# bcrypt requires the installation of 'bcrypt' module.
|
||||||
|
#htpasswd_encryption = autodetect
|
||||||
|
|
||||||
|
# Enable caching of htpasswd file based on size and mtime_ns
|
||||||
|
#htpasswd_cache = False
|
||||||
|
|
||||||
|
# Incorrect authentication delay (seconds)
|
||||||
|
#delay = 1
|
||||||
|
|
||||||
|
# Message displayed in the client when a password is needed
|
||||||
|
#realm = Radicale - Password Required
|
||||||
|
|
||||||
|
# Convert username to lowercase, must be true for case-insensitive auth providers
|
||||||
|
#lc_username = False
|
||||||
|
|
||||||
|
# Strip domain name from username
|
||||||
|
#strip_domain = False
|
||||||
|
|
||||||
|
|
||||||
|
[rights]
|
||||||
|
|
||||||
|
# Rights backend
|
||||||
|
# Value: authenticated | owner_only | owner_write | from_file
|
||||||
|
#type = owner_only
|
||||||
|
|
||||||
|
# File for rights management from_file
|
||||||
|
#file = /etc/radicale/rights
|
||||||
|
|
||||||
|
# Permit delete of a collection (global)
|
||||||
|
#permit_delete_collection = True
|
||||||
|
|
||||||
|
# Permit overwrite of a collection (global)
|
||||||
|
#permit_overwrite_collection = True
|
||||||
|
|
||||||
|
|
||||||
|
[storage]
|
||||||
|
|
||||||
|
# Storage backend
|
||||||
|
# Value: multifilesystem | multifilesystem_nolock
|
||||||
|
#type = multifilesystem
|
||||||
|
|
||||||
|
# Folder for storing local collections, created if not present
|
||||||
|
#filesystem_folder = /var/lib/radicale/collections
|
||||||
|
|
||||||
|
# Folder for storing cache of local collections, created if not present
|
||||||
|
# Note: only used in case of use_cache_subfolder_* options are active
|
||||||
|
# Note: can be used on multi-instance setup to cache files on local node (see below)
|
||||||
|
#filesystem_cache_folder = (filesystem_folder)
|
||||||
|
|
||||||
|
# Use subfolder 'collection-cache' for 'item' cache file structure instead of inside collection folder
|
||||||
|
# Note: can be used on multi-instance setup to cache 'item' on local node
|
||||||
|
#use_cache_subfolder_for_item = False
|
||||||
|
|
||||||
|
# Use subfolder 'collection-cache' for 'history' cache file structure instead of inside collection folder
|
||||||
|
# Note: use only on single-instance setup, will break consistency with client in multi-instance setup
|
||||||
|
#use_cache_subfolder_for_history = False
|
||||||
|
|
||||||
|
# Use subfolder 'collection-cache' for 'sync-token' cache file structure instead of inside collection folder
|
||||||
|
# Note: use only on single-instance setup, will break consistency with client in multi-instance setup
|
||||||
|
#use_cache_subfolder_for_synctoken = False
|
||||||
|
|
||||||
|
# Use last modifiction time (nanoseconds) and size (bytes) for 'item' cache instead of SHA256 (improves speed)
|
||||||
|
# Note: check used filesystem mtime precision before enabling
|
||||||
|
# Note: conversion is done on access, bulk conversion can be done offline using storage verification option: radicale --verify-storage
|
||||||
|
#use_mtime_and_size_for_item_cache = False
|
||||||
|
|
||||||
|
# Use configured umask for folder creation (not applicable for OS Windows)
|
||||||
|
# Useful value: 0077 | 0027 | 0007 | 0022
|
||||||
|
#folder_umask = (system default, usual 0022)
|
||||||
|
|
||||||
|
# Delete sync token that are older (seconds)
|
||||||
|
#max_sync_token_age = 2592000
|
||||||
|
|
||||||
|
# Skip broken item instead of triggering an exception
|
||||||
|
#skip_broken_item = True
|
||||||
|
|
||||||
|
# Command that is run after changes to storage, default is emtpy
|
||||||
|
# Supported placeholders:
|
||||||
|
# %(user)s: logged-in user
|
||||||
|
# %(cwd)s : current working directory
|
||||||
|
# %(path)s: full path of item
|
||||||
|
# Command will be executed with base directory defined in filesystem_folder
|
||||||
|
# For "git" check DOCUMENTATION.md for bootstrap instructions
|
||||||
|
# Example(test): echo \"user=%(user)s path=%(path)s cwd=%(cwd)s\"
|
||||||
|
# Example(git): git add -A && (git diff --cached --quiet || git commit -m "Changes by \"%(user)s\"")
|
||||||
|
#hook =
|
||||||
|
|
||||||
|
# Create predefined user collections
|
||||||
|
#
|
||||||
|
# json format:
|
||||||
|
#
|
||||||
|
# {
|
||||||
|
# "def-addressbook": {
|
||||||
|
# "D:displayname": "Personal Address Book",
|
||||||
|
# "tag": "VADDRESSBOOK"
|
||||||
|
# },
|
||||||
|
# "def-calendar": {
|
||||||
|
# "C:supported-calendar-component-set": "VEVENT,VJOURNAL,VTODO",
|
||||||
|
# "D:displayname": "Personal Calendar",
|
||||||
|
# "tag": "VCALENDAR"
|
||||||
|
# }
|
||||||
|
# }
|
||||||
|
#
|
||||||
|
predefined_collections = {
|
||||||
|
"def-addressbook": {
|
||||||
|
"D:displayname": "Personal Address Book",
|
||||||
|
"tag": "VADDRESSBOOK"
|
||||||
|
},
|
||||||
|
"def-calendar": {
|
||||||
|
"C:supported-calendar-component-set": "VEVENT,VJOURNAL,VTODO",
|
||||||
|
"D:displayname": "Personal Calendar",
|
||||||
|
"tag": "VCALENDAR"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
[web]
|
||||||
|
|
||||||
|
# Web interface backend
|
||||||
|
# Value: none | internal
|
||||||
|
type = none
|
||||||
|
|
||||||
|
|
||||||
|
[logging]
|
||||||
|
|
||||||
|
# Threshold for the logger
|
||||||
|
# Value: debug | info | warning | error | critical
|
||||||
|
#level = info
|
||||||
|
|
||||||
|
# Don't include passwords in logs
|
||||||
|
#mask_passwords = True
|
||||||
|
|
||||||
|
# Log bad PUT request content
|
||||||
|
#bad_put_request_content = False
|
||||||
|
|
||||||
|
# Log backtrace on level=debug
|
||||||
|
#backtrace_on_debug = False
|
||||||
|
|
||||||
|
# Log request header on level=debug
|
||||||
|
#request_header_on_debug = False
|
||||||
|
|
||||||
|
# Log request content on level=debug
|
||||||
|
#request_content_on_debug = False
|
||||||
|
|
||||||
|
# Log response content on level=debug
|
||||||
|
#response_content_on_debug = False
|
||||||
|
|
||||||
|
# Log rights rule which doesn't match on level=debug
|
||||||
|
#rights_rule_doesnt_match_on_debug = False
|
||||||
|
|
||||||
|
# Log storage cache actions on level=debug
|
||||||
|
#storage_cache_actions_on_debug = False
|
||||||
|
|
||||||
|
[headers]
|
||||||
|
|
||||||
|
# Additional HTTP headers
|
||||||
|
#Access-Control-Allow-Origin = *
|
||||||
|
|
||||||
|
|
||||||
|
[hook]
|
||||||
|
|
||||||
|
# Hook types
|
||||||
|
# Value: none | rabbitmq
|
||||||
|
#type = none
|
||||||
|
#rabbitmq_endpoint =
|
||||||
|
#rabbitmq_topic =
|
||||||
|
#rabbitmq_queue_type = classic
|
||||||
|
|
||||||
|
|
||||||
|
[reporting]
|
||||||
|
|
||||||
|
# When returning a free-busy report, limit the number of returned
|
||||||
|
# occurences per event to prevent DOS attacks.
|
||||||
|
#max_freebusy_occurrence = 10000
|
||||||
72
config/traefik/docker-entrypoint-override.sh
Normal file
72
config/traefik/docker-entrypoint-override.sh
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
set -e
|
||||||
|
|
||||||
|
printenv
|
||||||
|
# Function to add arguments to the command
|
||||||
|
add_arg() {
|
||||||
|
TRAEFIK_CMD="$TRAEFIK_CMD $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Initialize the base command
|
||||||
|
TRAEFIK_CMD="traefik"
|
||||||
|
|
||||||
|
# Base Traefik arguments (from your existing configuration)
|
||||||
|
add_arg "--log.level=${TRAEFIK_LOG_LEVEL:-ERROR}"
|
||||||
|
# enable dashboard
|
||||||
|
add_arg "--api.dashboard=true"
|
||||||
|
# define entrypoints
|
||||||
|
add_arg "--entryPoints.http.address=:80"
|
||||||
|
add_arg "--entryPoints.http.http.redirections.entryPoint.to=https"
|
||||||
|
add_arg "--entryPoints.http.http.redirections.entryPoint.scheme=https"
|
||||||
|
add_arg "--entryPoints.https.address=:443"
|
||||||
|
# change default timeouts for long-running requests
|
||||||
|
# this is needed for webdav clients that do not support the TUS protocol
|
||||||
|
add_arg "--entryPoints.https.transport.respondingTimeouts.readTimeout=12h"
|
||||||
|
add_arg "--entryPoints.https.transport.respondingTimeouts.writeTimeout=12h"
|
||||||
|
add_arg "--entryPoints.https.transport.respondingTimeouts.idleTimeout=3m"
|
||||||
|
# docker provider (get configuration from container labels)
|
||||||
|
add_arg "--providers.docker.endpoint=unix:///var/run/docker.sock"
|
||||||
|
add_arg "--providers.docker.exposedByDefault=false"
|
||||||
|
# access log
|
||||||
|
add_arg "--accessLog=${TRAEFIK_ACCESS_LOG:-false}"
|
||||||
|
add_arg "--accessLog.format=json"
|
||||||
|
add_arg "--accessLog.fields.headers.names.X-Request-Id=keep"
|
||||||
|
|
||||||
|
# Add Let's Encrypt configuration if enabled
|
||||||
|
if [ "${TRAEFIK_SERVICES_TLS_CONFIG}" = "tls.certresolver=letsencrypt" ]; then
|
||||||
|
echo "Configuring Traefik with Let's Encrypt..."
|
||||||
|
add_arg "--certificatesResolvers.letsencrypt.acme.email=${TRAEFIK_ACME_MAIL:-example@example.org}"
|
||||||
|
add_arg "--certificatesResolvers.letsencrypt.acme.storage=/certs/acme.json"
|
||||||
|
add_arg "--certificatesResolvers.letsencrypt.acme.httpChallenge.entryPoint=http"
|
||||||
|
add_arg "--certificatesResolvers.letsencrypt.acme.caserver=${TRAEFIK_ACME_CASERVER:-https://acme-v02.api.letsencrypt.org/directory}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Add local certificate configuration if enabled
|
||||||
|
if [ "${TRAEFIK_SERVICES_TLS_CONFIG}" = "tls=true" ]; then
|
||||||
|
echo "Configuring Traefik with local certificates..."
|
||||||
|
add_arg "--providers.file.directory=/etc/traefik/dynamic"
|
||||||
|
add_arg "--providers.file.watch=true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Warning if neither certificate method is enabled
|
||||||
|
if [ "${TRAEFIK_SERVICES_TLS_CONFIG}" != "tls=true" ] && [ "${TRAEFIK_SERVICES_TLS_CONFIG}" != "tls.certresolver=letsencrypt" ]; then
|
||||||
|
echo "WARNING: Neither Let's Encrypt nor local certificates are enabled."
|
||||||
|
echo "HTTPS will not work properly without certificate configuration."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Add any custom arguments from environment variable
|
||||||
|
if [ -n "${TRAEFIK_CUSTOM_ARGS}" ]; then
|
||||||
|
echo "Adding custom Traefik arguments: ${TRAEFIK_CUSTOM_ARGS}"
|
||||||
|
TRAEFIK_CMD="$TRAEFIK_CMD $TRAEFIK_CUSTOM_ARGS"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Add any additional arguments passed to the script
|
||||||
|
for arg in "$@"; do
|
||||||
|
add_arg "$arg"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Print the final command for debugging
|
||||||
|
echo "Starting Traefik with command:"
|
||||||
|
echo "$TRAEFIK_CMD"
|
||||||
|
|
||||||
|
# Execute Traefik
|
||||||
|
exec $TRAEFIK_CMD
|
||||||
0
config/traefik/dynamic/.gitkeep
Normal file
0
config/traefik/dynamic/.gitkeep
Normal file
@@ -27,10 +27,12 @@ services:
|
|||||||
PROXY_ENABLE_BASIC_AUTH: "${PROXY_ENABLE_BASIC_AUTH:-false}"
|
PROXY_ENABLE_BASIC_AUTH: "${PROXY_ENABLE_BASIC_AUTH:-false}"
|
||||||
# demo users
|
# demo users
|
||||||
IDM_CREATE_DEMO_USERS: "${DEMO_USERS:-false}"
|
IDM_CREATE_DEMO_USERS: "${DEMO_USERS:-false}"
|
||||||
|
# admin password
|
||||||
|
IDM_ADMIN_PASSWORD: "${INITIAL_ADMIN_PASSWORD}"
|
||||||
# email server (if configured)
|
# email server (if configured)
|
||||||
NOTIFICATIONS_SMTP_HOST: "${SMTP_HOST}"
|
NOTIFICATIONS_SMTP_HOST: "${SMTP_HOST}"
|
||||||
NOTIFICATIONS_SMTP_PORT: "${SMTP_PORT}"
|
NOTIFICATIONS_SMTP_PORT: "${SMTP_PORT}"
|
||||||
NOTIFICATIONS_SMTP_SENDER: "${SMTP_SENDER:-OpenCloud notifications <notifications@${OC_DOMAIN:-cloud.opencloud.test}>}"
|
NOTIFICATIONS_SMTP_SENDER: "${SMTP_SENDER:-OpenCloud Notifications <notifications@cloud.opencloud.test>}"
|
||||||
NOTIFICATIONS_SMTP_USERNAME: "${SMTP_USERNAME}"
|
NOTIFICATIONS_SMTP_USERNAME: "${SMTP_USERNAME}"
|
||||||
NOTIFICATIONS_SMTP_PASSWORD: "${SMTP_PASSWORD}"
|
NOTIFICATIONS_SMTP_PASSWORD: "${SMTP_PASSWORD}"
|
||||||
NOTIFICATIONS_SMTP_INSECURE: "${SMTP_INSECURE}"
|
NOTIFICATIONS_SMTP_INSECURE: "${SMTP_INSECURE}"
|
||||||
@@ -40,6 +42,15 @@ services:
|
|||||||
PROXY_CSP_CONFIG_FILE_LOCATION: /etc/opencloud/csp.yaml
|
PROXY_CSP_CONFIG_FILE_LOCATION: /etc/opencloud/csp.yaml
|
||||||
# enable to allow using the banned passwords list
|
# enable to allow using the banned passwords list
|
||||||
OC_PASSWORD_POLICY_BANNED_PASSWORDS_LIST: banned-password-list.txt
|
OC_PASSWORD_POLICY_BANNED_PASSWORDS_LIST: banned-password-list.txt
|
||||||
|
# control the password enforcement and policy for public shares
|
||||||
|
OC_SHARING_PUBLIC_SHARE_MUST_HAVE_PASSWORD: "${OC_SHARING_PUBLIC_SHARE_MUST_HAVE_PASSWORD:-true}"
|
||||||
|
OC_SHARING_PUBLIC_WRITEABLE_SHARE_MUST_HAVE_PASSWORD: "${OC_SHARING_PUBLIC_WRITEABLE_SHARE_MUST_HAVE_PASSWORD:-true}"
|
||||||
|
OC_PASSWORD_POLICY_DISABLED: "${OC_PASSWORD_POLICY_DISABLED:-false}"
|
||||||
|
OC_PASSWORD_POLICY_MIN_CHARACTERS: "${OC_PASSWORD_POLICY_MIN_CHARACTERS:-8}"
|
||||||
|
OC_PASSWORD_POLICY_MIN_LOWERCASE_CHARACTERS: "${OC_PASSWORD_POLICY_MIN_LOWERCASE_CHARACTERS:-1}"
|
||||||
|
OC_PASSWORD_POLICY_MIN_UPPERCASE_CHARACTERS: "${OC_PASSWORD_POLICY_MIN_UPPERCASE_CHARACTERS:-1}"
|
||||||
|
OC_PASSWORD_POLICY_MIN_DIGITS: "${OC_PASSWORD_POLICY_MIN_DIGITS:-1}"
|
||||||
|
OC_PASSWORD_POLICY_MIN_SPECIAL_CHARACTERS: "${OC_PASSWORD_POLICY_MIN_SPECIAL_CHARACTERS:-1}"
|
||||||
volumes:
|
volumes:
|
||||||
- ./config/opencloud/csp.yaml:/etc/opencloud/csp.yaml
|
- ./config/opencloud/csp.yaml:/etc/opencloud/csp.yaml
|
||||||
- ./config/opencloud/banned-password-list.txt:/etc/opencloud/banned-password-list.txt
|
- ./config/opencloud/banned-password-list.txt:/etc/opencloud/banned-password-list.txt
|
||||||
|
|||||||
6
external-proxy/keycloak.yml
Normal file
6
external-proxy/keycloak.yml
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
services:
|
||||||
|
keycloak:
|
||||||
|
ports:
|
||||||
|
- "9000:9000"
|
||||||
|
- "8080:8080"
|
||||||
36
idm/external-authelia.yml
Normal file
36
idm/external-authelia.yml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
opencloud:
|
||||||
|
environment:
|
||||||
|
# enable opaque access tokens
|
||||||
|
PROXY_OIDC_ACCESS_TOKEN_VERIFY_METHOD: "none"
|
||||||
|
PROXY_OIDC_SKIP_VERIFICATION: "false"
|
||||||
|
|
||||||
|
# Enable authelia usernames as username in OpenCloud (instead of an id)
|
||||||
|
# PROXY_USER_OIDC_CLAIM: "preferred_username"
|
||||||
|
# PROXY_AUTOPROVISION_CLAIM_USERNAME: "preferred_username"
|
||||||
|
|
||||||
|
PROXY_ROLE_ASSIGNMENT_OIDC_CLAIM: "groups"
|
||||||
|
WEB_OIDC_SCOPE: "openid profile email groups"
|
||||||
|
|
||||||
|
# The desktop client currently doesn't work when oidc assignment driver is used : https://github.com/opencloud-eu/desktop/issues/217
|
||||||
|
# That's why you only can use it to bootstrap your admin user currently (if you want to use the desktop client).
|
||||||
|
#
|
||||||
|
# 1. *Before* first startup: Switch to `PROXY_ROLE_ASSIGNMENT_DRIVER: "oidc"`
|
||||||
|
# 2. Start opencloud container to generate initial config: `docker compose up -d`
|
||||||
|
# 3. Map the `opencloud-admin` group from authelia to the `admin` role from OpenCloud in opencloud-config/opencloud.yaml :
|
||||||
|
#
|
||||||
|
# proxy:
|
||||||
|
# role_assignment:
|
||||||
|
# oidc_role_mapper:
|
||||||
|
# role_claim: groups
|
||||||
|
# role_mapping:
|
||||||
|
# - role_name: admin
|
||||||
|
# claim_value: opencloud-admin
|
||||||
|
#
|
||||||
|
# 4. Restart opencloud container: `docker compose restart opencloud`
|
||||||
|
# 5. Login with your admin user (the one with the `opencloud-admin` group)
|
||||||
|
# 6. Switch back to `PROXY_ROLE_ASSIGNMENT_DRIVER: "default"``
|
||||||
|
# 7. Recreate opencloud container: `docker compose up -d opencloud`
|
||||||
|
PROXY_ROLE_ASSIGNMENT_DRIVER: "default"
|
||||||
|
GRAPH_ASSIGN_DEFAULT_USER_ROLE: "true"
|
||||||
@@ -11,7 +11,6 @@ services:
|
|||||||
OC_LDAP_USER_BASE_DN: "ou=users,dc=opencloud,dc=eu"
|
OC_LDAP_USER_BASE_DN: "ou=users,dc=opencloud,dc=eu"
|
||||||
OC_LDAP_USER_FILTER: "(objectclass=inetOrgPerson)"
|
OC_LDAP_USER_FILTER: "(objectclass=inetOrgPerson)"
|
||||||
GRAPH_LDAP_SERVER_UUID: "false"
|
GRAPH_LDAP_SERVER_UUID: "false"
|
||||||
GRAPH_LDAP_GROUP_CREATE_BASE_DN: "ou=custom,ou=groups,dc=opencloud,dc=eu"
|
|
||||||
GRAPH_LDAP_REFINT_ENABLED: "true" # osixia has refint enabled.
|
GRAPH_LDAP_REFINT_ENABLED: "true" # osixia has refint enabled.
|
||||||
FRONTEND_READONLY_USER_ATTRIBUTES: "user.onPremisesSamAccountName,user.displayName,user.mail,user.passwordProfile,user.accountEnabled,user.appRoleAssignments"
|
FRONTEND_READONLY_USER_ATTRIBUTES: "user.onPremisesSamAccountName,user.displayName,user.mail,user.passwordProfile,user.accountEnabled,user.appRoleAssignments"
|
||||||
PROXY_OIDC_REWRITE_WELLKNOWN: "true"
|
PROXY_OIDC_REWRITE_WELLKNOWN: "true"
|
||||||
@@ -67,12 +66,9 @@ services:
|
|||||||
# Use the custom schema from opencloud because we are in full control of the ldap server
|
# Use the custom schema from opencloud because we are in full control of the ldap server
|
||||||
- ./config/ldap/schemas/10_opencloud_schema.ldif:/schemas/10_opencloud_schema.ldif
|
- ./config/ldap/schemas/10_opencloud_schema.ldif:/schemas/10_opencloud_schema.ldif
|
||||||
- ./config/ldap/docker-entrypoint-override.sh:/opt/bitnami/scripts/openldap/docker-entrypoint-override.sh
|
- ./config/ldap/docker-entrypoint-override.sh:/opt/bitnami/scripts/openldap/docker-entrypoint-override.sh
|
||||||
- ldap-certs:/opt/bitnami/openldap/share
|
- ${LDAP_CERTS_DIR:-ldap-certs}:/opt/bitnami/openldap/share
|
||||||
- ldap-data:/bitnami/openldap
|
- ${LDAP_DATA_DIR:-ldap-data}:/bitnami/openldap
|
||||||
keycloak:
|
|
||||||
volumes:
|
|
||||||
- "./config/keycloak/docker-entrypoint-override.sh:/opt/keycloak/bin/docker-entrypoint-override.sh"
|
|
||||||
- "./config/keycloak/opencloud-realm-autoprovisioning.dist.json:/opt/keycloak/data/import-dist/opencloud-realm.json"
|
|
||||||
volumes:
|
volumes:
|
||||||
ldap-certs:
|
ldap-certs:
|
||||||
ldap-data:
|
ldap-data:
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ services:
|
|||||||
IDP_DOMAIN: ${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}
|
IDP_DOMAIN: ${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}
|
||||||
|
|
||||||
ldap-server:
|
ldap-server:
|
||||||
image: bitnami/openldap:2.6
|
image: bitnamilegacy/openldap:2.6
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
entrypoint: [ "/bin/sh", "/opt/bitnami/scripts/openldap/docker-entrypoint-override.sh", "/opt/bitnami/scripts/openldap/run.sh" ]
|
entrypoint: [ "/bin/sh", "/opt/bitnami/scripts/openldap/docker-entrypoint-override.sh", "/opt/bitnami/scripts/openldap/run.sh" ]
|
||||||
@@ -65,7 +65,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:alpine
|
image: postgres:17-alpine
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
volumes:
|
volumes:
|
||||||
@@ -79,16 +79,17 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
keycloak:
|
keycloak:
|
||||||
image: quay.io/keycloak/keycloak:25.0.0
|
image: quay.io/keycloak/keycloak:26.3.3
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
command: [ "start", "--proxy=edge", "--spi-connections-http-client-default-disable-trust-manager=${INSECURE:-false}", "--import-realm" ]
|
command: [ "start", "--spi-connections-http-client-default-disable-trust-manager=${INSECURE:-false}", "--import-realm" ]
|
||||||
entrypoint: [ "/bin/sh", "/opt/keycloak/bin/docker-entrypoint-override.sh" ]
|
entrypoint: [ "/bin/sh", "/opt/keycloak/bin/docker-entrypoint-override.sh" ]
|
||||||
volumes:
|
volumes:
|
||||||
- "./config/keycloak/docker-entrypoint-override.sh:/opt/keycloak/bin/docker-entrypoint-override.sh"
|
- "./config/keycloak/docker-entrypoint-override.sh:/opt/keycloak/bin/docker-entrypoint-override.sh"
|
||||||
- "./config/keycloak/opencloud-realm.dist.json:/opt/keycloak/data/import-dist/opencloud-realm.json"
|
- "./config/keycloak/opencloud-realm.dist.json:/opt/keycloak/data/import-dist/openCloud-realm.json"
|
||||||
- "./config/keycloak/themes/opencloud:/opt/keycloak/themes/opencloud"
|
- "./config/keycloak/themes/opencloud:/opt/keycloak/themes/opencloud"
|
||||||
environment:
|
environment:
|
||||||
|
LDAP_ADMIN_PASSWORD: ${LDAP_BIND_PASSWORD:-admin}
|
||||||
OC_DOMAIN: ${OC_DOMAIN:-cloud.opencloud.test}
|
OC_DOMAIN: ${OC_DOMAIN:-cloud.opencloud.test}
|
||||||
KC_HOSTNAME: ${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}
|
KC_HOSTNAME: ${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}
|
||||||
KC_DB: postgres
|
KC_DB: postgres
|
||||||
@@ -96,6 +97,8 @@ services:
|
|||||||
KC_DB_USERNAME: ${KC_DB_USERNAME:-keycloak}
|
KC_DB_USERNAME: ${KC_DB_USERNAME:-keycloak}
|
||||||
KC_DB_PASSWORD: ${KC_DB_PASSWORD:-keycloak}
|
KC_DB_PASSWORD: ${KC_DB_PASSWORD:-keycloak}
|
||||||
KC_FEATURES: impersonation
|
KC_FEATURES: impersonation
|
||||||
|
KC_PROXY_HEADERS: xforwarded
|
||||||
|
KC_HTTP_ENABLED: true
|
||||||
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN:-kcadmin}
|
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN:-kcadmin}
|
||||||
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin}
|
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin}
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|||||||
7
monitoring/monitoring-collaboration.yml
Normal file
7
monitoring/monitoring-collaboration.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
services:
|
||||||
|
collaboration:
|
||||||
|
environment:
|
||||||
|
# metrics
|
||||||
|
COLLABORATION_DEBUG_ADDR: 0.0.0.0:9304
|
||||||
@@ -8,11 +8,6 @@ services:
|
|||||||
# will expose the same metrics, so it's sufficient to query one endpoint
|
# will expose the same metrics, so it's sufficient to query one endpoint
|
||||||
PROXY_DEBUG_ADDR: 0.0.0.0:9205
|
PROXY_DEBUG_ADDR: 0.0.0.0:9205
|
||||||
|
|
||||||
collaboration:
|
|
||||||
environment:
|
|
||||||
# metrics
|
|
||||||
COLLABORATION_DEBUG_ADDR: 0.0.0.0:9304
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
external: true
|
external: true
|
||||||
18
radicale/radicale.yml
Normal file
18
radicale/radicale.yml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
---
|
||||||
|
services:
|
||||||
|
opencloud:
|
||||||
|
volumes:
|
||||||
|
# external sites needs to have additional routes configured in the proxy
|
||||||
|
- ./config/opencloud/proxy.yaml:/etc/opencloud/proxy.yaml
|
||||||
|
radicale:
|
||||||
|
image: ${RADICALE_DOCKER_IMAGE:-opencloudeu/radicale}:${RADICALE_DOCKER_TAG:-latest}
|
||||||
|
networks:
|
||||||
|
opencloud-net:
|
||||||
|
logging:
|
||||||
|
driver: ${LOG_DRIVER:-local}
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ./config/radicale/config:/etc/radicale/config
|
||||||
|
- ${RADICALE_DATA_DIR:-radicale-data}:/var/lib/radicale
|
||||||
|
volumes:
|
||||||
|
radicale-data:
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres:alpine
|
image: postgres:17-alpine
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
volumes:
|
volumes:
|
||||||
@@ -15,14 +15,14 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
keycloak:
|
keycloak:
|
||||||
image: quay.io/keycloak/keycloak:25.0.0
|
image: quay.io/keycloak/keycloak:26.3.3
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
command: [ "start", "--proxy=edge", "--spi-connections-http-client-default-disable-trust-manager=${INSECURE:-false}", "--import-realm" ]
|
command: [ "start", "--spi-connections-http-client-default-disable-trust-manager=${INSECURE:-false}", "--import-realm" ]
|
||||||
entrypoint: [ "/bin/sh", "/opt/keycloak/bin/docker-entrypoint-override.sh" ]
|
entrypoint: [ "/bin/sh", "/opt/keycloak/bin/docker-entrypoint-override.sh" ]
|
||||||
volumes:
|
volumes:
|
||||||
- "./config/keycloak/docker-entrypoint-override.sh:/opt/keycloak/bin/docker-entrypoint-override.sh"
|
- "./config/keycloak/docker-entrypoint-override.sh:/opt/keycloak/bin/docker-entrypoint-override.sh"
|
||||||
- "./config/keycloak/opencloud-realm-autoprovisioning.dist.json:/opt/keycloak/data/import-dist/opencloud-realm.json"
|
- "./config/keycloak/opencloud-realm-autoprovisioning.dist.json:/opt/keycloak/data/import-dist/openCloud-realm.json"
|
||||||
- "./config/keycloak/themes/opencloud:/opt/keycloak/themes/opencloud"
|
- "./config/keycloak/themes/opencloud:/opt/keycloak/themes/opencloud"
|
||||||
environment:
|
environment:
|
||||||
OC_DOMAIN: ${OC_DOMAIN:-cloud.opencloud.test}
|
OC_DOMAIN: ${OC_DOMAIN:-cloud.opencloud.test}
|
||||||
@@ -32,6 +32,8 @@ services:
|
|||||||
KC_DB_USERNAME: ${KC_DB_USERNAME:-keycloak}
|
KC_DB_USERNAME: ${KC_DB_USERNAME:-keycloak}
|
||||||
KC_DB_PASSWORD: ${KC_DB_PASSWORD:-keycloak}
|
KC_DB_PASSWORD: ${KC_DB_PASSWORD:-keycloak}
|
||||||
KC_FEATURES: impersonation
|
KC_FEATURES: impersonation
|
||||||
|
KC_PROXY_HEADERS: xforwarded
|
||||||
|
KC_HTTP_ENABLED: true
|
||||||
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN:-kcadmin}
|
KEYCLOAK_ADMIN: ${KEYCLOAK_ADMIN:-kcadmin}
|
||||||
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin}
|
KEYCLOAK_ADMIN_PASSWORD: ${KEYCLOAK_ADMIN_PASSWORD:-admin}
|
||||||
depends_on:
|
depends_on:
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ services:
|
|||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.ldap-manager.entrypoints=https"
|
- "traefik.http.routers.ldap-manager.entrypoints=https"
|
||||||
- "traefik.http.routers.ldap-manager.rule=Host(`${LDAP_MANAGER_DOMAIN:-ldap.opencloud.test}`)"
|
- "traefik.http.routers.ldap-manager.rule=Host(`${LDAP_MANAGER_DOMAIN:-ldap.opencloud.test}`)"
|
||||||
- "traefik.http.routers.ldap-manager.tls.certresolver=letsencrypt"
|
- "traefik.http.routers.ldap-manager.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
- "traefik.http.routers.ldap-manager.service=ldap-manager"
|
- "traefik.http.routers.ldap-manager.service=ldap-manager"
|
||||||
- "traefik.http.services.ldap-manager.loadbalancer.server.port=8080"
|
- "traefik.http.services.ldap-manager.loadbalancer.server.port=8080"
|
||||||
logging:
|
logging:
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ services:
|
|||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.collaboration.entrypoints=https"
|
- "traefik.http.routers.collaboration.entrypoints=https"
|
||||||
- "traefik.http.routers.collaboration.rule=Host(`${WOPISERVER_DOMAIN:-wopiserver.opencloud.test}`)"
|
- "traefik.http.routers.collaboration.rule=Host(`${WOPISERVER_DOMAIN:-wopiserver.opencloud.test}`)"
|
||||||
- "traefik.http.routers.collaboration.tls.certresolver=letsencrypt"
|
- "traefik.http.routers.collaboration.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
- "traefik.http.routers.collaboration.service=collaboration"
|
- "traefik.http.routers.collaboration.service=collaboration"
|
||||||
- "traefik.http.services.collaboration.loadbalancer.server.port=9300"
|
- "traefik.http.services.collaboration.loadbalancer.server.port=9300"
|
||||||
collabora:
|
collabora:
|
||||||
@@ -19,6 +19,6 @@ services:
|
|||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.collabora.entrypoints=https"
|
- "traefik.http.routers.collabora.entrypoints=https"
|
||||||
- "traefik.http.routers.collabora.rule=Host(`${COLLABORA_DOMAIN:-collabora.opencloud.test}`)"
|
- "traefik.http.routers.collabora.rule=Host(`${COLLABORA_DOMAIN:-collabora.opencloud.test}`)"
|
||||||
- "traefik.http.routers.collabora.tls.certresolver=letsencrypt"
|
- "traefik.http.routers.collabora.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
- "traefik.http.routers.collabora.service=collabora"
|
- "traefik.http.routers.collabora.service=collabora"
|
||||||
- "traefik.http.services.collabora.loadbalancer.server.port=9980"
|
- "traefik.http.services.collabora.loadbalancer.server.port=9980"
|
||||||
|
|||||||
@@ -10,6 +10,6 @@ services:
|
|||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.keycloak.entrypoints=https"
|
- "traefik.http.routers.keycloak.entrypoints=https"
|
||||||
- "traefik.http.routers.keycloak.rule=Host(`${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}`)"
|
- "traefik.http.routers.keycloak.rule=Host(`${KEYCLOAK_DOMAIN:-keycloak.opencloud.test}`)"
|
||||||
- "traefik.http.routers.keycloak.tls.certresolver=letsencrypt"
|
- "traefik.http.routers.keycloak.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
- "traefik.http.routers.keycloak.service=keycloak"
|
- "traefik.http.routers.keycloak.service=keycloak"
|
||||||
- "traefik.http.services.keycloak.loadbalancer.server.port=8080"
|
- "traefik.http.services.keycloak.loadbalancer.server.port=8080"
|
||||||
|
|||||||
@@ -5,48 +5,31 @@ services:
|
|||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.routers.opencloud.entrypoints=https"
|
- "traefik.http.routers.opencloud.entrypoints=https"
|
||||||
- "traefik.http.routers.opencloud.rule=Host(`${OC_DOMAIN:-cloud.opencloud.test}`)"
|
- "traefik.http.routers.opencloud.rule=Host(`${OC_DOMAIN:-cloud.opencloud.test}`)"
|
||||||
- "traefik.http.routers.opencloud.tls.certresolver=letsencrypt"
|
|
||||||
- "traefik.http.routers.opencloud.service=opencloud"
|
- "traefik.http.routers.opencloud.service=opencloud"
|
||||||
- "traefik.http.services.opencloud.loadbalancer.server.port=9200"
|
- "traefik.http.services.opencloud.loadbalancer.server.port=9200"
|
||||||
|
- "traefik.http.routers.opencloud.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
traefik:
|
traefik:
|
||||||
image: traefik:v3.3.1
|
image: traefik:v3
|
||||||
# release notes: https://github.com/traefik/traefik/releases
|
# release notes: https://github.com/traefik/traefik/releases
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
aliases:
|
aliases:
|
||||||
- ${OC_DOMAIN:-cloud.opencloud.test}
|
- ${OC_DOMAIN:-cloud.opencloud.test}
|
||||||
command:
|
entrypoint: [ "/bin/sh", "/opt/traefik/bin/docker-entrypoint-override.sh"]
|
||||||
- "--log.level=${TRAEFIK_LOG_LEVEL:-ERROR}"
|
environment:
|
||||||
# letsencrypt configuration
|
- "TRAEFIK_SERVICES_TLS_CONFIG=${TRAEFIK_SERVICES_TLS_CONFIG:-tls.certresolver=letsencrypt}"
|
||||||
- "--certificatesResolvers.letsencrypt.acme.email=${TRAEFIK_ACME_MAIL:-example@example.org}"
|
- "TRAEFIK_ACME_MAIL=${TRAEFIK_ACME_MAIL:-example@example.org}"
|
||||||
- "--certificatesResolvers.letsencrypt.acme.storage=/certs/acme.json"
|
- "TRAEFIK_ACME_CASERVER=${TRAEFIK_ACME_CASERVER:-https://acme-v02.api.letsencrypt.org/directory}"
|
||||||
- "--certificatesResolvers.letsencrypt.acme.httpChallenge.entryPoint=http"
|
- "TRAEFIK_LOG_LEVEL=${TRAEFIK_LOG_LEVEL:-ERROR}"
|
||||||
- "--certificatesResolvers.letsencrypt.acme.caserver=${TRAEFIK_ACME_CASERVER:-https://acme-v02.api.letsencrypt.org/directory}"
|
- "TRAEFIK_ACCESS_LOG=${TRAEFIK_ACCESS_LOG:-false}"
|
||||||
# enable dashboard
|
|
||||||
- "--api.dashboard=true"
|
|
||||||
# define entrypoints
|
|
||||||
- "--entryPoints.http.address=:80"
|
|
||||||
- "--entryPoints.http.http.redirections.entryPoint.to=https"
|
|
||||||
- "--entryPoints.http.http.redirections.entryPoint.scheme=https"
|
|
||||||
- "--entryPoints.https.address=:443"
|
|
||||||
# change default timeouts for long-running requests
|
|
||||||
# this is needed for webdav clients that do not support the TUS protocol
|
|
||||||
- "--entryPoints.https.transport.respondingTimeouts.readTimeout=12h"
|
|
||||||
- "--entryPoints.https.transport.respondingTimeouts.writeTimeout=12h"
|
|
||||||
- "--entryPoints.https.transport.respondingTimeouts.idleTimeout=3m"
|
|
||||||
# docker provider (get configuration from container labels)
|
|
||||||
- "--providers.docker.endpoint=unix:///var/run/docker.sock"
|
|
||||||
- "--providers.docker.exposedByDefault=false"
|
|
||||||
# access log
|
|
||||||
- "--accessLog=true"
|
|
||||||
- "--accessLog.format=json"
|
|
||||||
- "--accessLog.fields.headers.names.X-Request-Id=keep"
|
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
volumes:
|
volumes:
|
||||||
- "${DOCKER_SOCKET_PATH:-/var/run/docker.sock}:/var/run/docker.sock:ro"
|
- "${DOCKER_SOCKET_PATH:-/var/run/docker.sock}:/var/run/docker.sock:ro"
|
||||||
- "certs:/certs"
|
- "./config/traefik/docker-entrypoint-override.sh:/opt/traefik/bin/docker-entrypoint-override.sh"
|
||||||
|
- "${TRAEFIK_CERTS_DIR:-./certs}:/certs"
|
||||||
|
- "./config/traefik/dynamic:/etc/traefik/dynamic"
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=${TRAEFIK_DASHBOARD:-false}"
|
- "traefik.enable=${TRAEFIK_DASHBOARD:-false}"
|
||||||
# defaults to admin:admin
|
# defaults to admin:admin
|
||||||
@@ -54,11 +37,8 @@ services:
|
|||||||
- "traefik.http.routers.traefik.entrypoints=https"
|
- "traefik.http.routers.traefik.entrypoints=https"
|
||||||
- "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.opencloud.test}`)"
|
- "traefik.http.routers.traefik.rule=Host(`${TRAEFIK_DOMAIN:-traefik.opencloud.test}`)"
|
||||||
- "traefik.http.routers.traefik.middlewares=traefik-auth"
|
- "traefik.http.routers.traefik.middlewares=traefik-auth"
|
||||||
- "traefik.http.routers.traefik.tls.certresolver=letsencrypt"
|
- "traefik.http.routers.traefik.${TRAEFIK_SERVICES_TLS_CONFIG}"
|
||||||
- "traefik.http.routers.traefik.service=api@internal"
|
- "traefik.http.routers.traefik.service=api@internal"
|
||||||
logging:
|
logging:
|
||||||
driver: ${LOG_DRIVER:-local}
|
driver: ${LOG_DRIVER:-local}
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
volumes:
|
|
||||||
certs:
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
collabora:
|
collabora:
|
||||||
image: collabora/code:25.04.1.1.1
|
image: collabora/code:25.04.4.2.1
|
||||||
# release notes: https://www.collaboraonline.com/release-notes/
|
# release notes: https://www.collaboraonline.com/release-notes/
|
||||||
networks:
|
networks:
|
||||||
opencloud-net:
|
opencloud-net:
|
||||||
@@ -69,4 +69,7 @@ services:
|
|||||||
entrypoint: ['/bin/bash', '-c']
|
entrypoint: ['/bin/bash', '-c']
|
||||||
command: ['coolconfig generate-proof-key && /start-collabora-online.sh']
|
command: ['coolconfig generate-proof-key && /start-collabora-online.sh']
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "bash", "-c", "exec 3<>/dev/tcp/127.0.0.1/9980 && echo -e 'GET /hosting/discovery HTTP/1.1\r\nHost: localhost:9980\r\n\r\n' >&3 && head -n 1 <&3 | grep '200 OK'"]
|
test: [ "CMD", "curl", "-f", "http://localhost:9980/hosting/discovery" ]
|
||||||
|
interval: 15s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 5
|
||||||
|
|||||||
Reference in New Issue
Block a user