all-things-risingwave

How to resolve the error 'docker: 'compose' is not a docker command' when using docker compose up -d command?

I am trying to start Rising Wave with the command 'docker compose up -d' but I am getting the error 'docker: 'compose' is not a docker command'. I have Docker version 20.10.6 installed. How can I resolve this issue?

Vi

Vijay Shankar

Asked on Aug 25, 2023

  • The error 'docker: 'compose' is not a docker command' indicates that the command 'docker compose' is not recognized by Docker.
  • The correct command to use is docker-compose up -d instead of docker compose up -d.
  • Make sure you have installed the latest version of Docker and Docker Compose.
  • If you are using the latest version of Docker, the command should be docker-compose instead of docker compose.
  • Check the Docker installation and ensure Docker Compose is properly installed.
  • Here is the correct command to start Rising Wave with Docker Compose: docker-compose up -d.
Aug 27, 2023Edited by