From 318625a04ea32f65467a74e9c777081720f6926d Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Tue, 16 Apr 2024 18:53:43 -0600 Subject: [PATCH] fixed startall.sh --- startall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/startall.sh b/startall.sh index 16ea366..20f47c9 100755 --- a/startall.sh +++ b/startall.sh @@ -3,5 +3,6 @@ script_root="$( dirname $0 )" for y in "${script_root}"/*.yml;do - sudo docker-compose -f "${y}" up -d + by="$(basename $y)" + sudo docker-compose -f "${y}" -p "${by}" up -d done