From 39544371f88dd70cadfee85439f6950096cb9528 Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Wed, 26 Mar 2025 11:49:18 +0100 Subject: [PATCH] add decomposed.yml --- deployments/examples/opencloud_full/.env | 11 +++++------ deployments/examples/opencloud_full/decomposed.yml | 6 ++++++ deployments/examples/opencloud_full/posix.yml | 10 ---------- 3 files changed, 11 insertions(+), 16 deletions(-) create mode 100644 deployments/examples/opencloud_full/decomposed.yml delete mode 100644 deployments/examples/opencloud_full/posix.yml diff --git a/deployments/examples/opencloud_full/.env b/deployments/examples/opencloud_full/.env index 8580470563..89e2616c6b 100644 --- a/deployments/examples/opencloud_full/.env +++ b/deployments/examples/opencloud_full/.env @@ -92,12 +92,11 @@ DECOMPOSEDS3_BUCKET= # Minio domain. Defaults to "minio.opencloud.test". MINIO_DOMAIN= -# POSIX Storage configuration - optional -# OpenCloud supports posix storage as primary storage. -# Per default, S3 storage is disabled and the decomposed storage driver is used. -# To enable POSIX storage, uncomment the following line. +# OpenCloud uses POSIX storage as the default primary storage. +# By default, Decomposed storage is disabled, and the POSIX storage driver is used. +# To enable Decomposed storage, uncomment the following line. # Note: the leading colon is required to enable the service. -#POSIX=:posix.yml +#DECOMPOSED=:decomposed.yml # Define SMPT settings if you would like to send OpenCloud email notifications. # @@ -242,4 +241,4 @@ COMPOSE_PATH_SEPARATOR=: # This MUST be the last line as it assembles the supplemental compose files to be used. # ALL supplemental configs must be added here, whether commented or not. # Each var must either be empty or contain :path/file.yml -COMPOSE_FILE=docker-compose.yml${OPENCLOUD:-}${TIKA:-}${DECOMPOSEDS3:-}${DECOMPOSEDS3_MINIO:-}${POSIX:-}${COLLABORA:-}${MONITORING:-}${IMPORTER:-}${CLAMAV:-}${ONLYOFFICE:-}${INBUCKET:-}${EXTENSIONS:-}${UNZIP:-}${DRAWIO:-}${JSONVIEWER:-}${PROGRESSBARS:-}${EXTERNALSITES:-} +COMPOSE_FILE=docker-compose.yml${OPENCLOUD:-}${TIKA:-}${DECOMPOSEDS3:-}${DECOMPOSEDS3_MINIO:-}${DECOMPOSED:-}${COLLABORA:-}${MONITORING:-}${IMPORTER:-}${CLAMAV:-}${ONLYOFFICE:-}${INBUCKET:-}${EXTENSIONS:-}${UNZIP:-}${DRAWIO:-}${JSONVIEWER:-}${PROGRESSBARS:-}${EXTERNALSITES:-} diff --git a/deployments/examples/opencloud_full/decomposed.yml b/deployments/examples/opencloud_full/decomposed.yml new file mode 100644 index 0000000000..053e537ac8 --- /dev/null +++ b/deployments/examples/opencloud_full/decomposed.yml @@ -0,0 +1,6 @@ +--- +services: + opencloud: + environment: + STORAGE_USERS_DRIVER: decomposed + \ No newline at end of file diff --git a/deployments/examples/opencloud_full/posix.yml b/deployments/examples/opencloud_full/posix.yml deleted file mode 100644 index 74bac21057..0000000000 --- a/deployments/examples/opencloud_full/posix.yml +++ /dev/null @@ -1,10 +0,0 @@ ---- -services: - opencloud: - environment: - # activate posix storage driver for users - STORAGE_USERS_DRIVER: posix - # keep system data on decomposed storage since this are only small files atm - STORAGE_SYSTEM_DRIVER: decomposed - # posix requires a shared cache store - STORAGE_USERS_ID_CACHE_STORE: "nats-js-kv"