From 6375de8167059061dd9f2408b2ba5c40cdb8c96e Mon Sep 17 00:00:00 2001 From: Jannik Stehle Date: Tue, 25 Mar 2025 11:36:59 +0100 Subject: [PATCH] chore: bump Collabora in deployment example and fix entrypoint Bumps Collabora in the deployment example to `24.04.13.2.1` and fixes the entrypoint. It seems to have changed with newer versions of the docker image, hence we need to specify the entrypoint manually to make the start commands work. --- deployments/examples/opencloud_full/collabora.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deployments/examples/opencloud_full/collabora.yml b/deployments/examples/opencloud_full/collabora.yml index 596c3f6d3c..846173ddf8 100644 --- a/deployments/examples/opencloud_full/collabora.yml +++ b/deployments/examples/opencloud_full/collabora.yml @@ -53,7 +53,7 @@ services: restart: always collabora: - image: collabora/code:24.04.12.2.1 + image: collabora/code:24.04.13.2.1 # release notes: https://www.collaboraonline.com/release-notes/ networks: opencloud-net: @@ -80,6 +80,7 @@ services: logging: driver: ${LOG_DRIVER:-local} restart: always - command: ["bash", "-c", "coolconfig generate-proof-key ; /start-collabora-online.sh"] + entrypoint: ['/bin/bash', '-c'] + command: ['coolconfig generate-proof-key && /start-collabora-online.sh'] healthcheck: test: [ "CMD", "curl", "-f", "http://localhost:9980/hosting/discovery" ]