mirror of
https://github.com/containers/podman.git
synced 2025-06-25 12:20:42 +08:00
@ -1 +0,0 @@
|
||||
FROM registry.fedoraproject.org/fedora-minimal:latest
|
@ -1,4 +0,0 @@
|
||||
This dockerfile exists so that the container image can be "mirrored"
|
||||
onto quay.io automatically, so automated testing can be more resilient.
|
||||
|
||||
https://quay.io/repository/libpod/fedora-minimal?tab=builds
|
@ -2,7 +2,7 @@ package integration
|
||||
|
||||
var (
|
||||
redis = "quay.io/libpod/redis:alpine"
|
||||
fedoraMinimal = "quay.io/libpod/fedora-minimal:latest"
|
||||
fedoraMinimal = "registry.fedoraproject.org/fedora-minimal:34"
|
||||
ALPINE = "quay.io/libpod/alpine:latest"
|
||||
ALPINELISTTAG = "quay.io/libpod/alpine:3.10.2"
|
||||
ALPINELISTDIGEST = "quay.io/libpod/alpine@sha256:fa93b01658e3a5a1686dc3ae55f170d8de487006fb53a28efcd12ab0710a2e5f"
|
||||
|
@ -144,7 +144,7 @@ var _ = Describe("Podman images", func() {
|
||||
result := podmanTest.Podman([]string{"images", "-q", "-f", "reference=quay.io*"})
|
||||
result.WaitWithDefaultTimeout()
|
||||
Expect(result).Should(Exit(0))
|
||||
Expect(len(result.OutputToStringArray())).To(Equal(8))
|
||||
Expect(len(result.OutputToStringArray())).To(Equal(7))
|
||||
|
||||
retalpine := podmanTest.Podman([]string{"images", "-f", "reference=a*pine"})
|
||||
retalpine.WaitWithDefaultTimeout()
|
||||
|
@ -1516,7 +1516,7 @@ USER mail`, BB)
|
||||
})
|
||||
|
||||
It("podman run --privileged and --group-add", func() {
|
||||
groupName := "kvm"
|
||||
groupName := "mail"
|
||||
session := podmanTest.Podman([]string{"run", "-t", "-i", "--group-add", groupName, "--privileged", fedoraMinimal, "groups"})
|
||||
session.WaitWithDefaultTimeout()
|
||||
Expect(session).Should(Exit(0))
|
||||
|
Reference in New Issue
Block a user