from: https://docs.mattermost.com/install/prod-docker.html
Production Docker Deployment
Deploy Mattermost using a multi-node production configuration using Docker Compose. Docker Compose experience recommended.
For a single-node preview of Mattermost (without email) see Local Machine Setup using Docker.
If you have any problems installing, see the troubleshooting guide. To submit an improvement or correction, click Edit at the top of this page.
Production Docker Setup on Ubuntu
-
Install Docker using the Ubuntu online guide or these instructions:
复制代码1
2
3
4
5
6
7sudo apt-get update sudo apt-get install wget wget -qO- https://get.docker.com/ | sh sudo usermod -aG docker <username> sudo service docker start newgrp docker
-
Install Docker Compose using the online guide. You have to download the latest release from Docker Compose Github’s page and put the binary on your
/usr/local/bin
folder. Usually, you can use the following command, replacing$dockerComposeVersion
by the Docker Compose version to install :复制代码1
2
3curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose sudo chmod +x /usr/local/bin/docker-compose
-
Deploy the Mattermost Production Docker setup by running:
复制代码1
2
3
4
5
6
7git clone https://github.com/mattermost/mattermost-docker.git cd mattermost-docker docker-compose build mkdir -pv ./volumes/app/mattermost/{data,logs,config} chown -R 2000:2000 ./volumes/app/mattermost/ docker-compose up -d
-
Configure TLS by following the instructions
-
Configure Email by following the SMTP email setup guide
-
(Optional) to enable enterprise features under System Console > Edition and License upload your trial license or subscription license filereceived via email.
-
Configure your server based on configuration settings documentation
Additional Guides:
- Start, stop and remove containers using management instructions.
- Setup Database Backup following the database backup instructions.
最后
以上就是殷勤蛋挞最近收集整理的关于部署聊天工具Mattermost用dockerProduction Docker Deployment的全部内容,更多相关部署聊天工具Mattermost用dockerProduction内容请搜索靠谱客的其他文章。
发表评论 取消回复