$password = ConvertTo-SecureString -String "TypeYourPasswordHere" -AsPlainText -Force #put your wished password here
$credential = New-Object PSCredential 'TypeYourUsernameHere', $password #put your wished username here
New-BCContainer -accept_eula -accept_outdated -updatehosts `
-imageName 'fedora' ` #put your image name here
-containerName 'TypeYourContainerNamehere' ` #put your container name here
-auth UserPassword -Credential $credential `
-licenseFile 'C:\Users\YourDirectory\license.flf' #put your directory of the license here
Clone/pull your git
Open project in VsCode
Download symbols (Press F1, Type in AL: Download Symbols)
That’s a great follow up, thanks for posting that! So you basically make a local image from your container, and that works when you copy it to another computer?