diff --git a/ContainerInfo/Test-NavContainer.ps1 b/ContainerInfo/Test-NavContainer.ps1 index c1e2d9d6f..b5b34d49f 100644 --- a/ContainerInfo/Test-NavContainer.ps1 +++ b/ContainerInfo/Test-NavContainer.ps1 @@ -26,9 +26,9 @@ try { $a = "" } - $id = docker ps $a -q --no-trunc --format "{{.ID}}/{{.Names}}" | Where-Object { $containerName -eq $_.split('/')[1] } | % { $_.split('/')[0] } + $id = docker ps $a --no-trunc --format "{{.ID}}/{{.Names}}" | Where-Object { $containerName -eq $_.split('/')[1] } | % { $_.split('/')[0] } if (!($id)) { - $id = docker ps $a -q --no-trunc --filter "id=$containerName" + $id = docker ps $a --no-trunc --filter "id=$containerName" } if ($id) { $inspect = docker inspect $id | ConvertFrom-Json diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 5a97d2bc0..1c5f67804 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,5 +1,6 @@ 5.0.3 Issue #3051 Unable to import .rapidstart file - The property 'Code' cannot be found on this object +Issue #3054 BcContainerHelper doesn't work with Docker 24.0.0. Docker error "WARNING: Ignoring custom format, because both --format and --quiet are set 5.0.2 Issue #2934 Add setting to containerHelper config: DoNotUseCdnForArtifacts to allow people to grab Artfacts directly from blob storage instead of CDN