Mattermost

Mattermost - Open source messaging platform

8065
Default Port
2
Services
19.0/20
Complexity
Medium
Memory Usage
Configuration

Installation Command

blastdock init mattermost

Template Overview

Everything you need to deploy Mattermost with BlastDock

Quick Deploy

One command deployment

Secure

Production-ready security

Configurable

Customizable settings

Scalable

Ready to scale up

What's Included

Mattermost
mattermost/mattermost-team-edition:latest
Postgresql
postgres:13-alpine
Categories
Other
Security Features
Password Protection
Resource Requirements
CPU: Medium, Memory: Medium , Storage Required

Quick Commands

blastdock init Initialize new project
blastdock deploy Deploy the application
blastdock status Check deployment status
blastdock logs View application logs

Quick Installation

Get Mattermost up and running in minutes with our one-click installation.

BlastDock Installation

First, install BlastDock using pip (recommended):

Terminal
pip install blastdock

Then deploy Mattermost with:

Terminal
blastdock init mattermost

Interactive mode:

Terminal
blastdock init mattermost -i

What's Included

Mattermost
Container service
Postgresql
Container service

BlastDock Commands

blastdock templates List available templates
blastdock status project Check deployment status
blastdock logs project View application logs
blastdock stop project Stop deployment

Configuration Options

Customize your Mattermost installation with these configuration options.

5
Required Fields
0
Optional Fields
1
Auto-Generated Passwords

Http Port

HTTP port

port
Default: 8065
Required: Yes

Postgres User

PostgreSQL username

string
Default: mmuser
Required: Yes

Postgres Password

PostgreSQL password

password
Default: ••••••••••••
Required: Yes
Security: Auto-generated

Postgres Db

PostgreSQL database

string
Default: mattermost
Required: Yes

Site Url

Site URL

domain
Default: localhost
Required: Yes

Docker Compose

Complete Docker Compose configuration for Mattermost deployment.

2
Services
6
Volumes
1
Networks
1
Exposed Ports
docker-compose.yml
version: '3.8'

services:
  mattermost:
    image: mattermost/mattermost-team-edition:latest
    container_name: {{ project_name }}_mattermost
    restart: unless-stopped
    depends_on:
      - postgresql
    ports:
      - "8065"
    environment:
      0: MM_SQLSETTINGS_DRIVERNAME=postgres
      - MM_SQLSETTINGS_DATASOURCE=postgres: //{{ postgres_user }}:{{ postgres_password }}@postgresql:5432/{{ postgres_db }}?sslmode=disable
      - MM_SERVICESETTINGS_SITEURL=http: //{{ site_url }}:{{ http_port }}
    volumes:
      - /mattermost/data
      - /mattermost/logs
      - /mattermost/config
      - /mattermost/plugins
      - /mattermost/client/plugins
    networks:
      - mattermost_network

  postgresql:
    image: postgres:13-alpine
    container_name: {{ project_name }}_postgresql
    restart: unless-stopped
    environment:
      0: POSTGRES_USER={{ postgres_user }}
      1: POSTGRES_PASSWORD={{ postgres_password }}
      2: POSTGRES_DB={{ postgres_db }}
    volumes:
      - /var/lib/postgresql/data
    networks:
      - mattermost_network

volumes:
  mattermost_data:
    driver: local

  mattermost_logs:
    driver: local

  mattermost_config:
    driver: local

  mattermost_plugins:
    driver: local

  mattermost_client_plugins:
    driver: local

  postgres_data:
    driver: local

networks:
  mattermost_network:
    driver: bridge