Compare commits

...

9 Commits

Author SHA1 Message Date
Mario Vitale
74b6afb20a
Merge pull request #144 from JtheBAB/patch-1
Update env.example to latest ESR version
2024-02-02 18:57:18 +01:00
JtheBAB
a0ad9bef52
Update env.example 2024-01-31 16:37:36 +01:00
Claudio Costa
50b14baa2a
Merge pull request #139 from mattermost/support-custom-port
Support custom port for Calls
2023-10-11 08:36:24 -06:00
streamer45
26fb013e95
Support custom port for Calls 2023-10-10 17:13:46 -06:00
Claudio Costa
1fee048edc
Merge pull request #131 from mattermost/MM-53140
Expose TCP port for Calls
2023-07-12 15:55:27 -06:00
streamer45
e31e65ffea
Bump MM image version to latest ESR 2023-06-20 16:05:59 -06:00
streamer45
287886d525
Expose TCP port for Calls 2023-06-20 15:56:47 -06:00
Erfan
ab91deac93
fix typo in link to deprecated project (#126) 2023-05-25 12:57:31 +03:00
Claudio Costa
7c00d8fc85
Merge pull request #127 from mattermost/update-calls-port
Expose Calls UDP port in base compose file
2023-05-10 12:53:45 +02:00
5 changed files with 7 additions and 6 deletions

View File

@ -10,4 +10,4 @@ PRs are welcome, refer to our [contributing guide](https://developers.mattermost
## Upgrading from `mattermost-docker`
This repository replaces the [deprecated mattermost-docker repository](https://github.com/mattermost/mattermost-docker>). For an in-depth guide to upgrading, please refer to [this document](https://github.com/mattermost/docker/blob/main/scripts/UPGRADE.md).
This repository replaces the [deprecated mattermost-docker repository](https://github.com/mattermost/mattermost-docker). For an in-depth guide to upgrading, please refer to [this document](https://github.com/mattermost/docker/blob/main/scripts/UPGRADE.md).

View File

@ -29,7 +29,8 @@ services:
- ${HTTP_PORT}:80
mattermost:
ports:
- ${CALLS_PORT}:8443/udp
- ${CALLS_PORT}:${CALLS_PORT}/udp
- ${CALLS_PORT}:${CALLS_PORT}/tcp
# Shared volume for Let's Encrypt certificate renewal with a webroot
volumes:

View File

@ -4,4 +4,5 @@ services:
mattermost:
ports:
- ${APP_PORT}:8065
- ${CALLS_PORT}:8443/udp
- ${CALLS_PORT}:${CALLS_PORT}/udp
- ${CALLS_PORT}:${CALLS_PORT}/tcp

View File

@ -59,8 +59,6 @@ services:
# additional settings
- MM_SERVICESETTINGS_SITEURL
ports:
- ${CALLS_PORT}:8443/udp
# If you use rolling image tags and feel lucky watchtower can automatically pull new images and
# instantiate containers from it. https://containrrr.dev/watchtower/

View File

@ -61,7 +61,8 @@ MM_BLEVESETTINGS_INDEXDIR=/mattermost/bleve-indexes
## This will be 'mattermost-enterprise-edition' or 'mattermost-team-edition' based on the version of Mattermost you're installing.
MATTERMOST_IMAGE=mattermost-enterprise-edition
MATTERMOST_IMAGE_TAG=7.1
## Update the image tag if you want to upgrade your Mattermost version. You may also upgrade to the latest one. The example is based on the latest Mattermost ESR version.
MATTERMOST_IMAGE_TAG=8.1.9
## Make Mattermost container readonly. This interferes with the regeneration of root.html inside the container. Only use
## it if you know what you're doing.