From 2b6783aaf29b2042daea1d4b0f38335e197f737a Mon Sep 17 00:00:00 2001 From: th0mcat <37344783+th0mcat@users.noreply.github.com> Date: Mon, 19 Dec 2022 10:45:24 -0600 Subject: [PATCH] Add --no-cache arg to update instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b96b0b..28fd600 100644 --- a/README.md +++ b/README.md @@ -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 ```