From 3ef7b34cb11ea63dc49b075855375e041005d22c Mon Sep 17 00:00:00 2001 From: Daniel Kobras Date: Fri, 12 Apr 2024 17:26:36 +0200 Subject: [PATCH] greenlight: map storagedir into container The storagedir got created, but was never actually used. Map into greenlight container as was probably the original intention. This changes ensures that presentations and similar blobs can be persisted within greenlight. Fixes: 237740d568fee28cd18cb125d7ea575709f104d7 --- templates/greenlight-docker-compose.yml.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/greenlight-docker-compose.yml.j2 b/templates/greenlight-docker-compose.yml.j2 index f61f4be..5df5bfc 100644 --- a/templates/greenlight-docker-compose.yml.j2 +++ b/templates/greenlight-docker-compose.yml.j2 @@ -16,6 +16,7 @@ services: {% endfor %} volumes: - {{ bbb_greenlight_logdir }}:/usr/src/app/log + - {{ bbb_greenlight_storagedir }}:/usr/src/app/storage {% if bbb_greenlight_db_adapter == 'sqlite3' %} - {{ bbb_greenlight_dbdir }}:/usr/src/app/db/production {% endif %}