kind-mechanic-53546
04/19/2021, 3:10 AMnew docker.Image(...
, with a registry: {server: {azure container registry login server here}
, I'm getting the error Error: No digest available for image {registry:tag}
This process works on windows with the exact same pulumi version and stack (but has other issues with WSL and file ownership, speed etc..)
Per this file, running docker image inspect -f {{.Id}} imageName
in a terminal gives a correct output and pushing it with docker push {registry:tag}
runs fine outside of pulumi
It looks like this was a prior issue here and here but i'm running v2.25.2 so I'm not sure where to gobillowy-army-68599
kind-mechanic-53546
04/19/2021, 10:33 PMdocker login failed with exit code 1
which this issue might be a subsequent one as it cannot push.
const appBaseImage = new docker.Image(`${componentName}-image`, {
imageName: out.appBaseImageUri,
build: {
args: {
UBUNTU_VERSION: "...",
UBUNTU_RELEASE: "...",
NODE_VERSION: "...",
APP_VERSION: "...",
},
context: `./content/app-docker-base`,
},
registry: {
server: k8sRegistryLoginServer,
username: k8sRegistryUsername,
password: k8sRegistryPassword,
},
});