From 530c8bd77c72af99c15aadced8851f27e5b4bb07 Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Tue, 1 Jun 2021 17:06:40 +0200 Subject: [PATCH] debugging container start --- scripts/windows/start_container.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/windows/start_container.ps1 b/scripts/windows/start_container.ps1 index 181cf79..ef9ca3b 100644 --- a/scripts/windows/start_container.ps1 +++ b/scripts/windows/start_container.ps1 @@ -34,8 +34,8 @@ Write-Output "Image digest ${DIGEST}" Write-Output "Stopping old container..." docker stop ${NAME} docker rm ${NAME} -Write-Output "Starting container..." if (${testing}) { + Write-Output "Starting container with powershell to test..." docker run -it ` -v ${workdir}:C:\ws ` -v C:\credentials:C:\credentials ` @@ -43,6 +43,7 @@ if (${testing}) { -e IMAGE_DIGEST=${DIGEST} ` ${IMAGE} powershell } else { + Write-Output "Starting container with workdir ${workdir}..." docker run -d ` -v ${workdir}:C:\ws ` -v C:\credentials:C:\credentials `