Skip to content
This repository has been archived by the owner on May 20, 2022. It is now read-only.

Commit

Permalink
Make MM_VERSION an ARG instead of an ENV (#515)
Browse files Browse the repository at this point in the history
* make MM_VERSION an ARG instead of an ENV
  • Loading branch information
pat-s authored Mar 21, 2021
1 parent 2b12534 commit d8c52f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM alpine:3.10

# Some ENV variables
ENV PATH="/mattermost/bin:${PATH}"
ENV MM_VERSION=5.31.0
ENV MM_INSTALL_TYPE=docker

# Build argument to set Mattermost edition
ARG edition=enterprise
ARG PUID=2000
ARG PGID=2000
ARG MM_BINARY=
ARG MM_VERSION=5.31.0


# Install some needed packages
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ services:
# - edition=team
# - PUID=1000
# - PGID=1000
# - MM_VERSION=5.31

This comment has been minimized.

Copy link
@neurolabs

neurolabs Mar 22, 2021

should have been 5.31.0 instead. Currently, this triggers a docker build failure.

restart: unless-stopped
volumes:
- ./volumes/app/mattermost/config:/mattermost/config:rw
Expand Down

0 comments on commit d8c52f8

Please sign in to comment.