mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00
Prefer read/write images over read/only images
With additional stores there is a risk that you could have multiple images with the same name. IE An older image in a read/only store versus a newer version in the read/write store. This patch will ignore multiple images with the same name iff one is read/write and all of the others are read/only. Fixes: https://github.com/containers/podman/issues/8176 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
@ -38,7 +38,6 @@ var _ = Describe("Podman image|container exists", func() {
|
||||
Expect(session).Should(Exit(0))
|
||||
})
|
||||
It("podman image exists in local storage by short name", func() {
|
||||
Skip("FIXME-8165: shortnames don't seem to work with quay (#8176)")
|
||||
session := podmanTest.Podman([]string{"image", "exists", "alpine"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
|
Reference in New Issue
Block a user