Fix docker upgrade doc

pull/3561/head
Chocobozzz 2021-01-08 11:51:55 +01:00
parent a461418320
commit b826b33983
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 11 additions and 1 deletions

View File

@ -123,11 +123,21 @@ See the production guide ["What now" section](https://docs.joinpeertube.org/inst
**Important:** Before upgrading, check you have all the `storage` fields in your [production.yaml file](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/config/production.yaml).
Pull the latest images and rerun PeerTube:
Pull the latest images:
```shell
$ cd /your/peertube/directory
$ docker-compose pull
Stop, delete the containers and internal volumes (to invalidate static client files shared by `peertube` and `webserver` containers):
```shell
$ docker-compose down -v
```
Rerun PeerTube:
```shell
$ docker-compose up -d
```