From 38957d1da3c41f5a33250beed4b1f9caccb62abb Mon Sep 17 00:00:00 2001 From: Mario1159 Date: Mon, 25 Sep 2023 03:36:31 -0300 Subject: [PATCH] Fix container name variable name --- run.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.ps1 b/run.ps1 index 34109a2..cc32f34 100644 --- a/run.ps1 +++ b/run.ps1 @@ -83,7 +83,7 @@ wsl -d Ubuntu bash -ic $dockercommand if ($?) { Write-Host "Container created successfully!" -ForegroundColor Green - Write-Host "Enter the container with `"docker exec -it $containername bash`"" -ForegroundColor DarkGray + Write-Host "Enter the container with `"docker exec -it $container_name bash`"" -ForegroundColor DarkGray } else { Write-Host "Container creation failed, see logs above" -ForegroundColor Red } \ No newline at end of file