Mattermost - Open source messaging platform
Everything you need to deploy Mattermost with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Mattermost up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Mattermost with:
blastdock init mattermost
Interactive mode:
blastdock init mattermost -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Mattermost installation with these configuration options.
HTTP port
PostgreSQL username
PostgreSQL password
PostgreSQL database
Site URL
Complete Docker Compose configuration for Mattermost deployment.
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