34 lines
1.5 KiB
Bash
34 lines
1.5 KiB
Bash
|
DATA_DIR=/data/team.jean-cloud.net
|
||
|
subnet=172.29.18
|
||
|
|
||
|
# Domain of service
|
||
|
DOMAIN=team.jean-cloud.net
|
||
|
|
||
|
# Container settings
|
||
|
## Timezone inside the containers. The value needs to be in the form 'Europe/Berlin'.
|
||
|
## A list of these tz database names can be looked up at Wikipedia
|
||
|
## https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
||
|
TZ=Europe/Paris
|
||
|
|
||
|
## Bleve index (inside the container)
|
||
|
MM_BLEVESETTINGS_INDEXDIR=/mattermost/bleve-indexes
|
||
|
|
||
|
## 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.
|
||
|
## See https://github.com/mattermost/docker/issues/18
|
||
|
MATTERMOST_CONTAINER_READONLY=false
|
||
|
|
||
|
## The app port is only relevant for using Mattermost without the nginx container as reverse proxy. This is not meant
|
||
|
## to be used with the internal HTTP server exposed but rather in case one wants to host several services on one host
|
||
|
## or for using it behind another existing reverse proxy.
|
||
|
APP_PORT=8065
|
||
|
|
||
|
## Configuration settings for Mattermost. Documentation on the variables and the settings itself can be found at
|
||
|
## https://docs.mattermost.com/administration/config-settings.html
|
||
|
## Keep in mind that variables set here will take precedence over the same setting in config.json. This includes
|
||
|
## the system console as well and settings set with env variables will be greyed out.
|
||
|
|
||
|
## Example settings (any additional setting added here also needs to be introduced in the docker-compose.yml)
|
||
|
MM_SERVICESETTINGS_SITEURL=https://${DOMAIN}
|
||
|
|