From 8f2820626c3a0eda295b407d4866d65ccd3b460c Mon Sep 17 00:00:00 2001 From: Kadar Anwar <11323060+kmanwar89@users.noreply.github.com> Date: Tue, 3 Jan 2023 09:06:46 -0500 Subject: [PATCH] Fix syntax of docker compose commands Docker compose's syntax changed as of Compose v2 (source: https://docs.docker.com/compose/reference/). Replaced references of "docker-compose" with "docker compose" to align with this change. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 18496a8..ac44d61 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ services: ports: - 8000:8080 EOF -docker-compose pull -docker-compose up +docker compose pull +docker compose up ``` The whole application will be available after a few minutes. @@ -123,7 +123,7 @@ This project relies only on _Docker_ and _docker-compose_ meeting these requirem * The _containerd version_ must be at least `1.5.6`. * The _docker-compose version_ must be at least `1.28.0`. -To check the version installed on your system run `docker --version` and `docker-compose --version`. +To check the version installed on your system run `docker --version` and `docker compose version`. ## Updating