diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2019-10-06 22:47:47 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2019-10-13 11:16:40 -0400 |
commit | c65276ef5e328390b54bd1f21ab86c25a79879a9 (patch) | |
tree | c594b02117a9958c7e37aad6d63a6268d1fb7d20 | |
parent | 753ca26b411bf5ea973c1126ce535811c71ad745 (diff) | |
download | meta-virtualization-c65276ef5e328390b54bd1f21ab86c25a79879a9.tar.gz |
podman-compose: initial version
Add podman-compose, a docker-compose implementation for podman. The
current version is not feature complete, hence not all docker-compose
file work.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/podman-compose_0.1.5.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes-containers/podman-compose_0.1.5.bb b/recipes-containers/podman-compose_0.1.5.bb new file mode 100644 index 00000000..4015069a --- /dev/null +++ b/recipes-containers/podman-compose_0.1.5.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | DESCRIPTION = "An implementation of docker-compose with podman backend" | ||
2 | LICENSE = "GPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" | ||
4 | |||
5 | inherit setuptools3 pypi | ||
6 | |||
7 | SRC_URI = "git://github.com/containers/podman-compose.git" | ||
8 | |||
9 | SRCREV = "f008986633879acf3f54848dabbf07cef8e9c68f" | ||
10 | |||
11 | S = "${WORKDIR}/git" | ||
12 | |||
13 | DEPENDS += "${PYTHON_PN}-pyyaml-native" | ||
14 | |||
15 | RDEPENDS_${PN} += "${PYTHON_PN}-pyyaml" | ||