From 3a08a1f550deef5a5d91de37ff7cc00e729adf61 Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 2 Sep 2022 20:33:37 +1000 Subject: [PATCH] Add note about image updates Ref: https://github.com/inventree/InvenTree/issues/3630 --- docs/start/docker_dev.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/start/docker_dev.md b/docs/start/docker_dev.md index 0849ba2..396f6bf 100644 --- a/docs/start/docker_dev.md +++ b/docs/start/docker_dev.md @@ -158,3 +158,11 @@ To run database migrations inside the docker container, run the following comman ``` docker-compose run inventree-dev-server invoke update ``` + +### Docker Image Updates + +Occassionally, the docker image itself may receive some updates. In these cases, it may be required that the image is rebuilt. To perform a complete rebuild of the InvenTree development image from local source, run the following command: + +``` +docker-compose build --no-cache +```