From a90e13af99b921f6b3661075a56ddd15fd7ce2c7 Mon Sep 17 00:00:00 2001 From: Christian Scherm Date: Wed, 22 Feb 2023 15:25:33 +0100 Subject: [PATCH] Fix invalid type in ocis_wopi docker-compose file Fix for `ERROR: The Compose file './docker-compose.yml' is invalid because: services.ocis.environment.NOTIFICATIONS_SMTP_INSECURE contains true, which is an invalid type, it should be a string, number, or a null` --- deployments/examples/ocis_wopi/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployments/examples/ocis_wopi/docker-compose.yml b/deployments/examples/ocis_wopi/docker-compose.yml index c01e6d2c2..d3f3c285a 100644 --- a/deployments/examples/ocis_wopi/docker-compose.yml +++ b/deployments/examples/ocis_wopi/docker-compose.yml @@ -81,7 +81,7 @@ services: NOTIFICATIONS_SMTP_PORT: 2500 NOTIFICATIONS_SMTP_SENDER: oCIS notifications NOTIFICATIONS_SMTP_USERNAME: notifications@${OCIS_DOMAIN:-ocis.owncloud.test} - NOTIFICATIONS_SMTP_INSECURE: true # the mail catcher uses self signed certificates + NOTIFICATIONS_SMTP_INSECURE: "true" # the mail catcher uses self signed certificates volumes: - ./config/ocis/app-registry.yaml:/etc/ocis/app-registry.yaml - ocis-config:/etc/ocis