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: .