From 1ae7515189332e1aaaaa674319fce0b8365029fa Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 16 Jan 2026 08:11:34 +0100 Subject: [PATCH] :bug: Set correct defaults for storage configuration on compose (#8060) * :fire: Remove mention to legacy and never released admin on compose * :bug: Set correct defaults for storage configuration on compose --- docker/images/docker-compose.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/docker/images/docker-compose.yaml b/docker/images/docker-compose.yaml index 5d709a92e8..2e9628f613 100644 --- a/docker/images/docker-compose.yaml +++ b/docker/images/docker-compose.yaml @@ -130,12 +130,6 @@ services: environment: << : [*penpot-flags, *penpot-public-uri, *penpot-http-body-size, *penpot-secret-key] - ## The PREPL host. Mainly used for external programatic access to penpot backend - ## (example: admin). By default it will listen on `localhost` but if you are going to use - ## the `admin`, you will need to uncomment this and set the host to `0.0.0.0`. - - # PENPOT_PREPL_HOST: 0.0.0.0 - ## Database connection parameters. Don't touch them unless you are using custom ## postgresql connection parameters. @@ -151,8 +145,8 @@ services: ## Default configuration for assets storage: using filesystem based with all files ## stored in a docker volume. - PENPOT_ASSETS_STORAGE_BACKEND: assets-fs - PENPOT_STORAGE_ASSETS_FS_DIRECTORY: /opt/data/assets + PENPOT_OBJECTS_STORAGE_BACKEND: fs + PENPOT_OBJECTS_STORAGE_FS_DIRECTORY: /opt/data/assets ## Also can be configured to to use a S3 compatible storage.