From 0ffb16dff241b4d316c5722a454740b391d54628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20M=C3=A9tral?= Date: Sat, 31 Jul 2021 13:46:46 +0200 Subject: [PATCH 1/4] Fix references to steps in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index beb8c16..5e531dc 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ sudo systemctl enable --now docker ``` ### 5. Placing the certificate and key (if using provided nginx) -Use either 4.1 or 4.2 for setting up SSL. Both methods require you to change the path to the Let's Encrypt config folders inside the *.env*. +Use either 5.1 or 5.2 for setting up SSL. Both methods require you to change the path to the Let's Encrypt config folders inside the *.env*. #### 5.1 Pre-existing certificate and key From 1569cd6fa11fda3563fac7ba9d8cd24be7ca5320 Mon Sep 17 00:00:00 2001 From: Wietse Wind Date: Sun, 8 Aug 2021 22:38:15 +0200 Subject: [PATCH 2/4] Small typo Felt like fixing while reading --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e531dc..11a369e 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository is meant to replace the previous *mattermost-docker* repository to the old one. Migrating will include some steps described below. To keep it simple all the basic configuration can be done through the *.env* file and you're free to change it to your likings. Additional guides can be found in the *docs* folder. Those are **optional**. -It's advised to take a look at our [documenation](https://docs.mattermost.com/deployment/scaling.html) with regards to +It's advised to take a look at our [documentation](https://docs.mattermost.com/deployment/scaling.html) with regards to scalability. ## Prequisites From a7c493abcec1fb1c834ac524396584e2c75cf0df Mon Sep 17 00:00:00 2001 From: Victor Yang Date: Sat, 14 Aug 2021 16:06:49 +0800 Subject: [PATCH 3/4] #22 Fix readme typo error. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11a369e..f3387b7 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ If you want to have a different version of Mattermost installed you will need to Remove the containers ``` -sudo docker-compose -f docker-compose.yml -f docker-compose.nginx.ymp down +sudo docker-compose -f docker-compose.yml -f docker-compose.nginx.yml down # OR sudo docker-compose -f docker-compose.yml -f docker-compose.without-nginx.yml down ``` From 509ef059ee1209707dca108eec529d32e0c5bc25 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 27 Jul 2021 13:00:44 +0200 Subject: [PATCH 4/4] Fix for #16 --- README.md | 2 +- docker-compose.yml | 2 +- env.example | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index beb8c16..f6a92d9 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ MATTERMOST_IMAGE_TAG=5.36 ### 3. Create the needed directores and set permissions (this orientates on the previous *mattermost-docker* structure and the direcories can be changed in the *.env* file) ``` -mkdir -p ./volumes/app/mattermost/{config,data,logs,plugins,client-plugins} +mkdir -p ./volumes/app/mattermost/{config,data,logs,plugins,client/plugins} sudo chown -R 2000:2000 ./volumes/app/mattermost ``` diff --git a/docker-compose.yml b/docker-compose.yml index 07b1a41..5874da0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -42,7 +42,7 @@ services: - ${MATTERMOST_DATA_PATH}:/mattermost/data:rw - ${MATTERMOST_LOGS_PATH}:/mattermost/logs:rw - ${MATTERMOST_PLUGINS_PATH}:/mattermost/plugins:rw - - ${MATTERMOST_CLIENT_PLUGINS_PATH}:/mattermost/client-plugins:rw + - ${MATTERMOST_CLIENT_PLUGINS_PATH}:/mattermost/client/plugins:rw environment: # timezone inside container - TZ diff --git a/env.example b/env.example index e4e3b13..9a469bc 100644 --- a/env.example +++ b/env.example @@ -51,7 +51,7 @@ MATTERMOST_CONFIG_PATH=./volumes/app/mattermost/config MATTERMOST_DATA_PATH=./volumes/app/mattermost/data MATTERMOST_LOGS_PATH=./volumes/app/mattermost/logs MATTERMOST_PLUGINS_PATH=./volumes/app/mattermost/plugins -MATTERMOST_CLIENT_PLUGINS_PATH=./volumes/app/mattermost/client-plugins +MATTERMOST_CLIENT_PLUGINS_PATH=./volumes/app/mattermost/client/plugins ## This will be 'mattermost-enterprise-edition' or 'mattermost-team-edition' based on the version of Mattermost you're installing. MATTERMOST_IMAGE=mattermost-enterprise-edition