Skip to content

Starting and stopping Marqo

Marqo uses docker for deployment. The following docker commands can be used for (re)starting and stopping Marqo.

Starting Marqo for the first time

  1. Marqo requires docker. To install docker go to Docker Docs.
  2. Use docker to run Marqo:
docker rm -f marqo;docker run --name marqo -it --privileged -p 8882:8882 --add-host host.docker.internal:host-gateway marqoai/marqo:latest

Stopping Marqo

To stop marqo, use CTRL+C in the window that was used to run it or alternatively use the following docker command;

docker stop marqo 

Restarting Marqo

After Marqo has been shutdown, it can be restarted with the folllowing;

docker start marqo;docker attach marqo