Skip to content

Commit

Permalink
issue #3054
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed May 17, 2023
1 parent 8b5876e commit d89b570
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ContainerInfo/Test-NavContainer.ps1
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions 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
Expand Down

0 comments on commit d89b570

Please sign in to comment.