Manual fork of official GitHub repository for docker deployment of Mattermost https://github.com/mattermost/mattermost-docker
This repository has been archived on 2021-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Pan Luo c6e177cdf2 Merge pull request #99 from nikosch86/docker-compose-dependencies
make use of docker compose dependencies
2017-02-23 13:31:18 -08:00
app Allow config location to be customized from CLI (#66) 2017-02-22 21:37:43 -08:00
contrib/kubernetes k8s: Move files for k8s into contrib directory 2016-10-08 19:12:56 +09:00
db Export vars to fix the postgres container error 2017-01-30 15:57:17 -08:00
web Updated nginx ssl config to provide correct X-Forwared-Proto header 2016-10-15 13:29:13 +02:00
.travis.yml app: Make it works without volume mounting 2016-06-17 00:12:15 +09:00
docker-compose-v1.yml services should be stoppable (#97) 2017-02-23 13:30:41 -08:00
docker-compose.yml Merge pull request #99 from nikosch86/docker-compose-dependencies 2017-02-23 13:31:18 -08:00
Dockerrun.aws.json aws: Upgrade to Mattermost 3.1.0 2016-06-21 19:20:34 +09:00
LICENSE Add README and LICENSE 2015-11-30 17:58:11 +09:00
MAINTENANCE.md Updating based on xcompass feedback 2017-02-04 08:39:32 -08:00
README.aws.md Support aws beanstalk 2016-04-25 00:36:38 +09:00
README.md Allow config location to be customized from CLI (#66) 2017-02-22 21:37:43 -08:00

Production Docker deployment for Mattermost

This project enables deployment of a Mattermost server in a multi-node production configuration using Docker.

Build Status

Notes:

  • To install this Docker project on AWS Elastic Beanstalk please see AWS Elastic Beanstalk Guide.
  • To install Mattermost without Docker directly onto a Linux-based operating systems, please see Admin Guide.

Installation using Docker Compose

The following instructions deploy Mattermost in a production configuration using multi-node Docker Compose set up.

Requirements

Install with SSL certificate

  1. Open docker-compose.yml and set MATTERMOST_ENABLE_SSL to true.

    environment:
      - MATTERMOST_ENABLE_SSL=true
    
  2. Put your SSL certificate as ./volumes/web/cert/cert.pem and the private key that has no password as ./volumes/web/cert/key-no-password.pem. If you don't have them you may generate a self-signed SSL certificate.

  3. Build and run mattermost

    docker-compose up -d

  4. Open https://your.domain with your web browser.

Install without SSL certificate

  1. Open docker-compose.yml and set MATTERMOST_ENABLE_SSL to false.

    environment:
      - MATTERMOST_ENABLE_SSL=false
    
  2. Build and run mattermost

    docker-compose up -d

  3. Open http://your.domain with your web browser.

Starting/Stopping

Start

docker-compose start

Stop

docker-compose stop

Removing

Remove the containers

docker-compose stop && docker-compose rm

Remove the data and settings of your mattermost instance

sudo rm -rf volumes

Database Backup

When AWS S3 environment variables are specified on db docker container, it enables Wal-E backup to S3.

docker run -d --name mattermost-db \
    -e AWS_ACCESS_KEY_ID=XXXX \
    -e AWS_SECRET_ACCESS_KEY=XXXX \
    -e WALE_S3_PREFIX=s3://BUCKET_NAME/PATH \
    -e AWS_REGION=us-east-1
    -v ./volumes/db/var/lib/postgresql/data:/var/lib/postgresql/data
    -v /etc/localtime:/etc/localtime:ro
    db

All four environment variables are required. It will enable completed WAL segments sent to archive storage (S3). The base backup and clean up can be done through the following command:

# base backup
docker exec mattermost-db su - postgres sh -c "/usr/bin/envdir /etc/wal-e.d/env /usr/local/bin/wal-e backup-push /var/lib/postgresql/data"
# keep the most recent 7 base backups and remove the old ones
docker exec mattermost-db su - postgres sh -c "/usr/bin/envdir /etc/wal-e.d/env /usr/local/bin/wal-e delete --confirm retain 7"

Those tasks can be executed through a cron job or systemd timer.

Customization

Customization can be done through environment variables.

Mattermost App Image

  • MM_USERNAME: database username, must be the same as one in DB image
  • MM_PASSWORD: database password, must be the same as one in DB image
  • MM_DBNAME: database name, must be the same as one in DB image
  • DB_HOST: database host address
  • DB_PORT_5432_TCP_PORT: database port
  • MM_CONFIG: configuration file location. It can be used when config is mounted in a different location.

Mattermost DB Image

  • MM_USERNAME: database username, must be the same as on in App image
  • MM_PASSWORD: database password, must be the same as on in App image
  • MM_DBNAME: database name, must be the same as on in App image
  • AWS_ACCESS_KEY_ID: aws access key, used for db backup
  • AWS_SECRET_ACCESS_KEY: aws secret, used for db backup
  • WALE_S3_PREFIX: aws s3 bucket name, used for db backup
  • AWS_REGION: aws region, used for db backup

Mattermost Web Image

  • MATTERMOST_ENABLE_SSL: whether to enable SSL
  • PLATFORM_PORT_80_TCP_PORT: port that Mattermost image is listening on

Upgrading to Team Edition 3.0.x from 2.x

You need to migrate your database before upgrading mattermost to 3.0.x from 2.x. Run these commands in the latest mattermost-docker directory.

docker-compose rm -f app
docker-compose build app
docker-compose run app -upgrade_db_30
docker-compose up -d

See the offical Upgrade Guide for more details.

Known Issues

  • Do not modify the Listen Address in Service Settings.
  • Rarely 'app' container fails to start because of "connection refused" to database. Workaround: Restart the container.

More information

If you want to know how to use docker-compose, see the overview page.

If you want to run Mattermost on Kubernetes you can start with the manifest examples in the kubernetes folder

For the server configurations, see prod-ubuntu.rst of mattermost.