Merge pull request #338 from cpanato/5.5.0

Bump to 5.5.0
This commit is contained in:
Carlos Tadeu Panato Junior 2018-11-15 20:18:11 +01:00 committed by GitHub
commit 8516ea1ee9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

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

View File

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