blob: 01aa8445a5ead1b81acdb80f21babef2ed479c72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package integration
var (
STORAGE_FS = "vfs"
STORAGE_OPTIONS = "--storage-driver vfs"
ROOTLESS_STORAGE_FS = "vfs"
ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
CACHE_IMAGES = []string{ALPINE, BB, fedoraMinimal, nginx, redis, registry, infra, labels, healthcheck}
nginx = "quay.io/libpod/alpine_nginx:latest"
BB_GLIBC = "docker.io/library/busybox:glibc"
registry = "docker.io/library/registry:2"
labels = "quay.io/libpod/alpine_labels:latest"
)
|