]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix docker upgrade doc
authorChocobozzz <me@florianbigard.com>
Fri, 8 Jan 2021 10:51:55 +0000 (11:51 +0100)
committerChocobozzz <me@florianbigard.com>
Fri, 8 Jan 2021 10:51:55 +0000 (11:51 +0100)
support/doc/docker.md

index 40fc1f5fa034d2c1d2b2800013f9adad4051e2ee..d09688feb82b47f0fe21c23061fca21ba9cf043c 100644 (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
 ```