From eed644fbaa2b0b95579acee5ac2ceb03560acd92 Mon Sep 17 00:00:00 2001 From: bkraul Date: Thu, 20 Feb 2025 19:48:09 -0600 Subject: [PATCH] Added --detach=true to start stacks in detach mode and avoid warning --- docker-stack-deploy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-stack-deploy b/docker-stack-deploy index 845b470..b331474 100755 --- a/docker-stack-deploy +++ b/docker-stack-deploy @@ -15,4 +15,4 @@ fi # if we found a compose file, deploy it. echo "Deploying stack as ${PARENT_DIR}..." -docker stack deploy -c docker-compose.stack.yml --with-registry-auth ${PARENT_DIR} \ No newline at end of file +docker stack deploy --detach=true -c docker-compose.stack.yml --with-registry-auth ${PARENT_DIR} \ No newline at end of file