From 4e1a5641c6c5a634d92d0974241baf22d3fe59ad Mon Sep 17 00:00:00 2001 From: Jonas Weigand Date: Sat, 19 Mar 2022 06:33:11 +0100 Subject: [PATCH] Update docs to advise for docker-compose v2 (#712) 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