From 2b8fd90021356a30d487a7af39d5fcf05414e97c Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Tue, 28 Sep 2021 17:03:55 +0200 Subject: [PATCH] Fix compose up in readme Signed-off-by: Mathieu Champlon --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aaa1344a1..1536ba4ab 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ defined using the [Compose file format](https://compose-spec.io). A Compose file is used to define how the one or more containers that make up your application are configured. Once you have a Compose file, you can create and start your application with a -single command: `docker-compose up`. +single command: `docker compose up`. # Where to get Docker Compose @@ -35,7 +35,7 @@ Using Docker Compose is basically a three-step process: reproduced anywhere. 2. Define the services that make up your app in `docker-compose.yml` so they can be run together in an isolated environment. -3. Lastly, run `docker-compose up` and Compose will start and run your entire +3. Lastly, run `docker compose up` and Compose will start and run your entire app. A Compose file looks like this: