From b0ad6fc932625ea170294b5bc88c17aa42d76911 Mon Sep 17 00:00:00 2001 From: cpanato Date: Thu, 15 Nov 2018 20:12:44 +0100 Subject: [PATCH] Bump to 5.5.0 --- app/Dockerfile | 2 +- contrib/kubernetes/mattermost.deployment.yaml | 2 +- contrib/swarm/docker-stack-traefik.yml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index ce5c6fb..399ea15 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.7 # Some ENV variables ENV PATH="/mattermost/bin:${PATH}" -ENV MM_VERSION=5.4.0 +ENV MM_VERSION=5.5.0 # Build argument to set Mattermost edition ARG edition=enterprise diff --git a/contrib/kubernetes/mattermost.deployment.yaml b/contrib/kubernetes/mattermost.deployment.yaml index a5a51b7..ebda4b2 100644 --- a/contrib/kubernetes/mattermost.deployment.yaml +++ b/contrib/kubernetes/mattermost.deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: mattermost-app - image: "mattermost/mattermost-prod-app:5.3.1" + image: "mattermost/mattermost-prod-app:5.5.0" env: - name: DB_HOST valueFrom: diff --git a/contrib/swarm/docker-stack-traefik.yml b/contrib/swarm/docker-stack-traefik.yml index d871465..908034a 100644 --- a/contrib/swarm/docker-stack-traefik.yml +++ b/contrib/swarm/docker-stack-traefik.yml @@ -4,17 +4,17 @@ # Simply run: # # `docker stack up [STACK NAME] -c docker-stack-traefik.yml` -# +# # In this case `mm` is going to be stack name, so the command will be: # # `docker stack up mm -c docker-stack-traefik.yml` # # From now on all the services that belong to this stack will be prefixed with `mm_` # this file defines 3 services, these are going to be mm_db, mm_app and mm_web, -# each of these names is the service's hostname as well, they can communicate +# each of these names is the service's hostname as well, they can communicate # with each other easily by using the hostname instead of the ip or exposing ports to the host. # -# As a side note, images tagged as latest are pulled by default, +# As a side note, images tagged as latest are pulled by default, # that means there's no need to use `image:latest` # # use latest compose v3.3 file format for optimal compatibility with latest docker release and swarm features.