From 54e1527ca010d71159bb9d170333b50441d451c9 Mon Sep 17 00:00:00 2001 From: Arthur Wolf Date: Thu, 24 Aug 2023 18:49:57 +0200 Subject: [PATCH] Add info about docker compose standalone --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 97f6318..3b7f837 100644 --- a/README.md +++ b/README.md @@ -139,6 +139,22 @@ docker compose down --- +> Note: If on your first, run, when you type `docker compose up` instead of properly running you see: +> +> ``` +> unknown shorthand flag: 'f' in -f +> See 'docker --help' +> ``` +> +> It is possible you have [Docker Compose Standalone ](https://docs.docker.com/compose/install/standalone/) installed, +> in which case you need to instead do: +> +> ``` +> docker-compose up +> ``` +> +> (note the added dash/minus character between docker and compose). + ### Install LlamaGPT with Kubernetes First, make sure you have a running Kubernetes cluster and `kubectl` is configured to interact with it.