From 9cd7be428da9dd1b63229e1f424363646dff7e29 Mon Sep 17 00:00:00 2001 From: jcma-google <99992917+jcma-google@users.noreply.github.com> Date: Wed, 14 Aug 2024 14:59:39 +0000 Subject: [PATCH] change --- cloud/azure/bin/lib/azure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud/azure/bin/lib/azure.sh b/cloud/azure/bin/lib/azure.sh index 8e917550..39d75c71 100644 --- a/cloud/azure/bin/lib/azure.sh +++ b/cloud/azure/bin/lib/azure.sh @@ -140,11 +140,12 @@ function azure::get_container_tag() { # 3. The new tag version ####################################### function azure::set_new_container_tag() { + echo "setting new container tag ${3}" az webapp config container set \ --resource-group "${1}" \ --name "${2}" \ --slot "primary" \ - --container-custom-image "DOCKER|civiform/civiform:${3}" + --container-image-image "DOCKER|civiform/civiform:${3}" } #######################################