parent
ee170666ec
commit
19f0bd8302
42
README.md
42
README.md
@ -76,39 +76,49 @@ Put your SSL certificate as `./volumes/web/cert/cert.pem` and the private key th
|
||||
no password as `./volumes/web/cert/key-no-password.pem`. If you don't have
|
||||
them you may generate a self-signed SSL certificate.
|
||||
|
||||
## Starting/Stopping
|
||||
### Starting/Stopping Docker
|
||||
|
||||
### Start
|
||||
#### Start
|
||||
```
|
||||
docker-compose start
|
||||
```
|
||||
|
||||
### Stop
|
||||
#### Stop
|
||||
```
|
||||
docker-compose stop
|
||||
```
|
||||
|
||||
### Update
|
||||
### Removing Docker
|
||||
|
||||
#### Remove the containers
|
||||
```
|
||||
docker-compose stop && docker-compose rm
|
||||
```
|
||||
|
||||
#### Remove the data and settings of your Mattermost instance
|
||||
```
|
||||
sudo rm -rf volumes
|
||||
```
|
||||
|
||||
## Update Mattermost to latest version
|
||||
|
||||
First, shutdown your containers to back up your data.
|
||||
|
||||
Make sure to backup Mattermost data before proceeding.
|
||||
```
|
||||
docker-compose down
|
||||
```
|
||||
|
||||
Back up your mounted volumes to save your data. If you use the default `docker-compose.yml` file proposed on this repository, your data is on `./volumes/` folder.
|
||||
|
||||
Then run the following commands.
|
||||
|
||||
```
|
||||
git pull
|
||||
docker-compose build
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
## Removing
|
||||
|
||||
### Remove the containers
|
||||
```
|
||||
docker-compose stop && docker-compose rm
|
||||
```
|
||||
|
||||
### Remove the data and settings of your Mattermost instance
|
||||
```
|
||||
sudo rm -rf volumes
|
||||
```
|
||||
Your Docker image should now be on the latest Mattermost version.
|
||||
|
||||
## Upgrading to Team Edition 3.0.x from 2.x
|
||||
|
||||
|
Reference in New Issue
Block a user