diff options
author | baude <bbaude@redhat.com> | 2020-12-11 09:17:45 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2020-12-11 10:07:13 -0600 |
commit | cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5 (patch) | |
tree | 46e3a7613d8893511bd8112653ea36258936d73c /test/compose/images | |
parent | f3e69d7300e3b4d6c5bb676c1dae27b10c3a4d56 (diff) | |
download | podman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.tar.gz podman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.tar.bz2 podman-cb91bf96e02de8a6a7e50f83b4b69b9c47b84cc5.zip |
add compose test descriptions
adding compose test descriptions and validations.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/compose/images')
-rw-r--r-- | test/compose/images/README.md | 5 | ||||
-rw-r--r-- | test/compose/images/podman-python/Containerfile | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/compose/images/README.md b/test/compose/images/README.md new file mode 100644 index 000000000..f25fbdc24 --- /dev/null +++ b/test/compose/images/README.md @@ -0,0 +1,5 @@ +images +====== + +Use these directories for images that are needed for the compose testing. These +images should be then pushed to `quay.io/libpod` for consumption. diff --git a/test/compose/images/podman-python/Containerfile b/test/compose/images/podman-python/Containerfile new file mode 100644 index 000000000..47f90afaa --- /dev/null +++ b/test/compose/images/podman-python/Containerfile @@ -0,0 +1,3 @@ +FROM alpine +WORKDIR /app +RUN apk update && apk add py3-pip && pip3 install flask && rm -fr /var/cache/apk/* |