Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

builtin/docker: use proper full image name resolution #2067

Merged
merged 3 commits into from
Oct 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/2067.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
plugin/docker: Resolve image identifiers properly
```
3 changes: 1 addition & 2 deletions builtin/docker/platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -731,8 +731,7 @@ func (p *Platform) pullImage(cli *client.Client, log hclog.Logger, ui terminal.U
return status.Errorf(codes.InvalidArgument, "unable to parse image name: %s", in)
}

in = named.Name()

in = named.Name()
log.Debug("pulling image", "image", in)

out, err := cli.ImagePull(context.Background(), in, ipo)
Expand Down