From 724d6e3a702eb1180f0b40300b2f9ae1f09c0fd9 Mon Sep 17 00:00:00 2001 From: petarbasic <52317999+petarbasic@users.noreply.github.com> Date: Tue, 20 Jan 2026 18:50:30 +0100 Subject: [PATCH] fix: DEV-1948: Fix cli container name in exec script for local env. --- scripts/util/exec.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/util/exec.sh b/scripts/util/exec.sh index 10c69024d8..7eab34bced 100755 --- a/scripts/util/exec.sh +++ b/scripts/util/exec.sh @@ -48,7 +48,7 @@ elif [[ "$PHAPP_ENV" = "vagrant" ]]; then elif [[ "$PHAPP_ENV" = "travis" ]]; then CONTAINER=${APP_MULTISITE_DOMAIN/\.local/}_web_1 elif [[ "$PHAPP_ENV" = "localdev" ]]; then - CONTAINER=cli + CONTAINER=${COMPOSE_PROJECT_NAME}-cli-1 fi # Pass through a few support variables.