Add --no-cache arg to update instructions

This commit is contained in:
th0mcat 2022-12-19 10:45:24 -06:00 committed by GitHub
parent a7fc0ab558
commit 2b6783aaf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,9 +134,9 @@ Thus to update, just rebuild your image and recreate your containers:
```sh
docker-compose pull # update the PostgreSQL if needed
docker-compose build .
docker-compose build --no-cache .
# or
docker build -t pleroma .
docker build --no-cache -t pleroma .
docker-compose run --rm web mix ecto.migrate # migrate the database if needed
docker-compose up -d # recreate the containers if needed
```