From 689ec5117583165387f101b60a802f302a9fa1ce Mon Sep 17 00:00:00 2001 From: Markus Ende <19502754+Markus-Ende@users.noreply.github.com> Date: Fri, 8 Nov 2024 14:56:51 +0100 Subject: [PATCH] fix: define separate volumes for mattermost service template see https://github.com/coollabsio/coolify/issues/4060 --- templates/compose/mattermost.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/compose/mattermost.yaml b/templates/compose/mattermost.yaml index f53e1b499..047be5b8d 100644 --- a/templates/compose/mattermost.yaml +++ b/templates/compose/mattermost.yaml @@ -9,7 +9,12 @@ services: image: mattermost/mattermost-team-edition:release-10 platform: linux/amd64 volumes: - - mattermost-data:/mattermost + - 'mattermost-data-config:/mattermost/config:rw' + - 'mattermost-data-data:/mattermost/data:rw' + - 'mattermost-data-logs:/mattermost/logs:rw' + - 'mattermost-data-plugins:/mattermost/plugins:rw' + - 'mattermost-data-client-plugins:/mattermost/client/plugins:rw' + - 'mattermost-data-bleve-indexes:/mattermost/bleve-indexes:rw' environment: - SERVICE_FQDN_MATTERMOST_8065 - MM_SERVICESETTINGS_SITEURL=${SERVICE_FQDN_MATTERMOST}