From f85256ee439fc569c7ca155f9dfde996652b3900 Mon Sep 17 00:00:00 2001 From: Arinze Chianumba <39227511+achianumba@users.noreply.github.com> Date: Fri, 4 Nov 2022 16:18:05 +0100 Subject: [PATCH] fixes "Command 'docker-compose' not found" error. This commit fixes the error thrown due to a typo in the command docker-compose -f docker-compose.dev.yml up --build. The correct command is docker compose -f docker-compose.dev.yml up --build without the hyphen between 'docker' and 'compose' in the command sequence. --- language/nodejs/run-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/language/nodejs/run-tests.md b/language/nodejs/run-tests.md index 1caade9fa0..cb8768c8b1 100644 --- a/language/nodejs/run-tests.md +++ b/language/nodejs/run-tests.md @@ -40,7 +40,7 @@ describe('Array', function() { Let’s build our Docker image and confirm everything is running properly. Run the following command to build and run your Docker image in a container. ```console -$ docker-compose -f docker-compose.dev.yml up --build +$ docker compose -f docker-compose.dev.yml up --build ``` Now let’s test our application by POSTing a JSON payload and then make an HTTP GET request to make sure our JSON was saved correctly. @@ -86,7 +86,7 @@ Okay, now that we know our application is running properly, let’s try and run Below is the Docker command to start the container and run tests: ```console -$ docker-compose -f docker-compose.dev.yml run notes npm run test +$ docker compose -f docker-compose.dev.yml run notes npm run test Creating node-docker_notes_run ... > node-docker@1.0.0 test /code