From 50f4f9594b3ac766ae77ee22d477d3ea38890f11 Mon Sep 17 00:00:00 2001
From: Jan David Mol <mol@astron.nl>
Date: Wed, 13 Oct 2021 19:52:16 +0200
Subject: [PATCH] L2SS-394: Don't stop and recreate dependencies. The user will
 explicitly ask for that using 'make stop' if needed.

---
 docker-compose/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker-compose/Makefile b/docker-compose/Makefile
index 86bbd989b..0da99b496 100644
--- a/docker-compose/Makefile
+++ b/docker-compose/Makefile
@@ -138,7 +138,7 @@ build-nocache: ## rebuild images from scratch
 	$(DOCKER_COMPOSE_ARGS) docker-compose $(COMPOSE_FILE_ARGS) build --no-cache --progress=plain $(SERVICE)
 
 up: minimal  ## start the base TANGO system and prepare all services
-	$(DOCKER_COMPOSE_ARGS) docker-compose $(COMPOSE_FILE_ARGS) up --no-start
+	$(DOCKER_COMPOSE_ARGS) docker-compose $(COMPOSE_FILE_ARGS) up --no-start --no-recreate
 
 down:  ## stop all services and tear down the system
 	$(DOCKER_COMPOSE_ARGS) docker-compose $(COMPOSE_FILE_ARGS) down
-- 
GitLab