I am using the following to spin up a Business Central container on Azure :
az container create -g $resourceGroup -n $containerName --image $imageName --os-type Windows --cpu 2 --memory 8
--ip-address public -e artifactUrl=$artifactUrl ACCEPT_EULA=Y USESSL=N LICENSEFILE=$licxFile MULTITENNANT=N
ClickOnce=Y publicDnsName=$dnsName --dns-name-label $containerName --ports 80 443 7048 7049 8080
the one parameter that is saying its not available is
$imageName = "mcr.microsoft.com/businesscentral:10.0.19041.329" <----Does this govern the OS Version used for Windows ?
also I am using
$artifactUrl = Get-BcArtifactUrl -type sandbox -country us -select Latest to get the latest.
Does the windows version in ImageName need to be compatible with the artifacturl ?
I dont want to vreat a VM because i need a number of users to be able to access the container.