2021-05-21 12:41:34 +00:00
|
|
|
version: "2.4"
|
2021-04-15 12:42:55 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
nginx:
|
2021-04-27 10:48:56 +00:00
|
|
|
depends_on:
|
|
|
|
- mattermost
|
2021-04-15 12:42:55 +00:00
|
|
|
container_name: nginx_mattermost
|
|
|
|
image: nginx:${NGINX_IMAGE_TAG}
|
|
|
|
restart: ${RESTART_POLICY}
|
2021-05-21 12:41:34 +00:00
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|
|
|
|
pids_limit: 100
|
|
|
|
read_only: true
|
|
|
|
tmpfs:
|
|
|
|
- /var/run
|
|
|
|
- /var/cache
|
|
|
|
- /var/log/nginx
|
2021-04-15 12:42:55 +00:00
|
|
|
volumes:
|
2021-04-27 10:05:52 +00:00
|
|
|
- ${NGINX_CONFIG_PATH}:/etc/nginx/conf.d:ro
|
2021-04-15 12:42:55 +00:00
|
|
|
- ${NGINX_DHPARAMS_FILE}:/dhparams4096.pem
|
|
|
|
- ${CERT_PATH}:/cert.pem:ro
|
|
|
|
- ${KEY_PATH}:/key.pem:ro
|
2021-04-16 09:26:33 +00:00
|
|
|
- shared-webroot:/usr/share/nginx/html
|
2021-09-28 12:41:59 +00:00
|
|
|
# When you want to use SSO with GitLab, you have to add the cert pki chain of GitLab inside Alpine
|
|
|
|
# to avoid Token request failed: certificate signed by unknown authority
|
|
|
|
# (link: https://github.com/mattermost/mattermost-server/issues/13059 and https://github.com/mattermost/docker/issues/34)
|
|
|
|
# - ${GITLAB_PKI_CHAIN_PATH}:/etc/ssl/certs/pki_chain.pem:ro
|
2021-04-15 12:42:55 +00:00
|
|
|
environment:
|
|
|
|
# timezone inside container
|
2021-10-11 13:30:11 +00:00
|
|
|
- TZ: ${TZ}
|
2021-04-15 12:42:55 +00:00
|
|
|
ports:
|
|
|
|
- ${HTTPS_PORT}:443
|
|
|
|
- ${HTTP_PORT}:80
|
2021-04-16 09:26:33 +00:00
|
|
|
|
|
|
|
# Shared volume for Let's Encrypt certificate renewal with a webroot
|
|
|
|
volumes:
|
|
|
|
shared-webroot:
|
2021-06-28 10:59:55 +00:00
|
|
|
name: shared-webroot
|
2021-04-16 09:26:33 +00:00
|
|
|
|
|
|
|
# This network name is being used for Let's Encrypt certificate renewal
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
name: mattermost
|