Hello
I removed all images / containers with zap
then I run the New-BcContainerWizard
Got this script :
$containerName = 'bcfr-15-cu5'
$credential = Get-Credential -Message 'Using UserPassword authentication. Please enter credentials for the container.'
$auth = 'UserPassword'
$artifactUrl = Get-BcArtifactUrl -type 'OnPrem' -version '15.5' -country 'fr' #-select 'Latest'
New-BcContainer `
-accept_eula `
-containerName $containerName `
-credential $credential `
-auth $auth `
-artifactUrl $artifactUrl `
-licenseFile $licenseFile `
-memoryLimit 8G `
-updateHosts
The running script I get this errors :
BcContainerHelper is version 1.0.14-dev
BcContainerHelper is running as administrator
Host is Microsoft Windows 10 Professionnel - 2004
Docker Client Version is 20.10.3
Docker Server Version is 20.10.3
Fetching all docker images
Pulling image mcr.microsoft.com/dynamicsnav:10.0.19041.572-generic
DockerDo : Error response from daemon: manifest for mcr.microsoft.com/dynamicsnav:10.0.19041.572-generic not found: manifest unknown: manifest tagged by "10.0.19041.572-generic" is not found
ExitCode: 1
Commandline: docker pull mcr.microsoft.com/dynamicsnav:10.0.19041.572-generic
Au caractère C:\Program Files\WindowsPowerShell\Modules\BcContainerHelper\1.0.14\ContainerHandling\New-NavContainer.ps1:681 : 13
+ DockerDo -command pull -imageName $bestImageName | Out-Nu ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Write-Error], WriteErrorException
+ FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,DockerDo
Could anybody help ?