diff --git a/Makefile b/Makefile index 9b5b55c759..f86fee6847 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ endif # We need current user's UID for `run-haserver` so docker compose does not run server # as root and mess up file permissions for devs. When running like this HOME will be blank -# and docker will add '/', so we need to set the go-build cache location or we'll get +# and docker will add '/', so we need to set the go-build cache location or we'll get # permission errors on build as it tries to create a cache in filesystem root. export CURRENT_UID = $(shell id -u):$(shell id -g) ifeq ($(HOME),/) @@ -105,11 +105,11 @@ TEMPLATES_DIR=templates # Plugins Packages PLUGIN_PACKAGES ?= mattermost-plugin-antivirus-v0.1.2 -PLUGIN_PACKAGES += mattermost-plugin-autolink-v1.2.1 +PLUGIN_PACKAGES += mattermost-plugin-autolink-v1.2.2 PLUGIN_PACKAGES += mattermost-plugin-aws-SNS-v1.2.0 PLUGIN_PACKAGES += mattermost-plugin-channel-export-v0.2.2 PLUGIN_PACKAGES += mattermost-plugin-custom-attributes-v1.3.0 -PLUGIN_PACKAGES += mattermost-plugin-github-v2.0.0 +PLUGIN_PACKAGES += mattermost-plugin-github-v2.0.1 PLUGIN_PACKAGES += mattermost-plugin-gitlab-v1.3.0 PLUGIN_PACKAGES += mattermost-plugin-incident-collaboration-v1.7.0 PLUGIN_PACKAGES += mattermost-plugin-jenkins-v1.1.0 @@ -181,14 +181,14 @@ ifneq (,$(findstring mysql-read-replica,$(ENABLED_DOCKER_SERVICES))) endif endif -run-haserver: +run-haserver: ifeq ($(BUILD_ENTERPRISE_READY),true) @echo Starting mattermost in an HA topology '(3 node cluster)' docker-compose -f docker-compose.yaml up --remove-orphans haproxy endif -stop-haserver: +stop-haserver: @echo Stopping docker containers for HA topology docker-compose stop