From 3ddab4f6e2de750e661dcc209509289b10f9d5c2 Mon Sep 17 00:00:00 2001 From: Mathieu Jaumotte Date: Mon, 4 Jul 2022 16:32:12 +0200 Subject: [PATCH] documente un souci avec docker lors de l'installation de chill --- docs/source/installation/index.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/source/installation/index.rst b/docs/source/installation/index.rst index 1312480e3..9c01f9b8b 100644 --- a/docs/source/installation/index.rst +++ b/docs/source/installation/index.rst @@ -65,6 +65,17 @@ This script will : 4. build assets +.. note:: + + In some cases it can happen that an old image (chill_base_php or chill_php) stored in the docker cache will make the script fail. To solve this problem you have to delete the image and the container, before the make init : + +.. code-block:: bash + + docker-compose images php + docker rmi -f chill_php:prod + docker-compose rm php + + 4. Start the project ====================