From aa1719a3a25f6a857c8566d175c77aa4f2be0c2a Mon Sep 17 00:00:00 2001 From: Jonas Weigand Date: Fri, 18 Mar 2022 13:18:55 +0100 Subject: [PATCH] Update docs to advise for docker-compose v2 This change is to inform users to use docker-compose v2. Using v1 can cause problems when parsing the final docker-compose.yaml. Mitigates #701 --- docs/images-and-compose-files.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/images-and-compose-files.md b/docs/images-and-compose-files.md index d763e31d..ab3d01e0 100644 --- a/docs/images-and-compose-files.md +++ b/docs/images-and-compose-files.md @@ -51,6 +51,8 @@ It is quite simple to run overrides. All we need to do is to specify compose fil docker-compose -f compose.yaml -f overrides/compose.erpnext.yaml config ``` +⚠ Make sure to use docker-compose v2 (run `docker-compose -v` to check). If you want to use v1 make sure the correct `$`-signs as they get duplicated by the `config` command! + That's it! Of course, we also have to setup `.env` before all of that, but that's not the point. ## Configuration