Hi all! I'm using `docker.RegistryImage` to have a...
# general
b
Hi all! I'm using
docker.RegistryImage
to have a bit more control over the docker build, following @faint-table-42725’s example in #132, but I'm not getting any logs from docker now, just:
docker:index:RegistryImage  registry-image-for-deps  creating...
Do I need to configure logging explicitly for
RegistryImage
?
f
If you’re looking to get the Docker build logs, you won’t get them with
RegistryImage
— this is one of the downsides that I mentioned at the bottom of https://github.com/pulumi/pulumi-docker/issues/132#issuecomment-812234110
b
ah, thanks!
Probably won't use
RegistryImage
then. Is there a way to set the tag that's used with
buildAndPushImage
?
f
Yes, you should be able to specify
foo:tag
as the
imageName
🙌 1