From cf29841c8316e0a0f8795e6e32c8b61d2ea35718 Mon Sep 17 00:00:00 2001 From: restitux Date: Sun, 8 Jan 2023 14:41:16 -0700 Subject: [PATCH] Fix docker script not overwriting tmp file --- docker/run-dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/run-dev.sh b/docker/run-dev.sh index ad31a7e..bf23dd2 100755 --- a/docker/run-dev.sh +++ b/docker/run-dev.sh @@ -23,11 +23,11 @@ function show_logs { case $1 in "default") - echo "default" >> _working/current_containers + echo "default" > _working/current_containers docker compose -f docker/docker-compose.yml up --build -d docker compose -f docker/docker-compose.yml logs -f;; "webhook") - echo "webhook" >> _working/current_containers + echo "webhook" > _working/current_containers stop_containers docker compose -f docker/docker-compose.yml -f docker/webhook-override.yml up --build -d docker compose -f docker/docker-compose.yml -f docker/webhook-override.yml logs -f;;