From 94ea093baeca03b1e6a9b57b0a9159ab00bf327c Mon Sep 17 00:00:00 2001 From: Kyrylo Shmidt Date: Thu, 16 Nov 2023 13:17:07 +0100 Subject: [PATCH] Update installation instructions --- src/components/InstallationWizard/InstallStep/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/InstallationWizard/InstallStep/index.tsx b/src/components/InstallationWizard/InstallStep/index.tsx index 52d1580a6..3e4e9b6d7 100644 --- a/src/components/InstallationWizard/InstallStep/index.tsx +++ b/src/components/InstallationWizard/InstallStep/index.tsx @@ -45,7 +45,7 @@ const GET_DIGMA_DOCKER_COMPOSE_COMMAND_LINUX = "curl -L https://get.digma.ai/ --output docker-compose.yml"; const GET_DIGMA_DOCKER_COMPOSE_COMMAND_WINDOWS = "iwr https://get.digma.ai/ -outfile docker-compose.yml"; -const RUN_DOCKER_COMPOSE_COMMAND = "docker compose up -d"; +const RUN_DOCKER_COMPOSE_COMMAND = "docker compose up -d --remove-orphans"; const DOCKER_DESKTOP_URL = "https://www.docker.com/products/docker-desktop/"; const DOCKER_URL = "https://docs.docker.com/get-docker/";