From ee6878a5dd6434c06bbb13d54fd9f6c1eefd8c5c Mon Sep 17 00:00:00 2001 From: stam Date: Wed, 2 Jun 2021 02:29:22 +0300 Subject: [PATCH] mattermost migrated --- linux/mattermost/latest/Makefile | 9 +++++---- linux/mattermost/latest/docker-compose.yml | 6 ++++++ 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 linux/mattermost/latest/docker-compose.yml diff --git a/linux/mattermost/latest/Makefile b/linux/mattermost/latest/Makefile index cac53052c..82c5a2de6 100644 --- a/linux/mattermost/latest/Makefile +++ b/linux/mattermost/latest/Makefile @@ -1,4 +1,5 @@ -all: mmed -mmed: - docker build --compress -t epicmorg/mattermost-enterprise-edition . - docker push epicmorg/mattermost-enterprise-edition:latest +all: app + +app: + docker-compose build --compress + docker-compose push diff --git a/linux/mattermost/latest/docker-compose.yml b/linux/mattermost/latest/docker-compose.yml new file mode 100644 index 000000000..d778bcbd9 --- /dev/null +++ b/linux/mattermost/latest/docker-compose.yml @@ -0,0 +1,6 @@ +version: '3.9' +services: + app: + image: "epicmorg/mattermost-enterprise-edition:latest" + build: + context: .