GNU bug report logs -
#67935
[PATCH] gnu: containers: Add podman-compose.
Previous Next
Reported by: Daniel Ziltener <dziltener <at> lyrion.ch>
Date: Wed, 20 Dec 2023 16:22:01 UTC
Severity: normal
Tags: patch
Done: Daniel Ziltener <dziltener <at> lyrion.ch>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
---
gnu/packages/containers.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index a3aa9ac1db..ccc428b3d6 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -32,6 +32,7 @@ (define-module (gnu packages containers)
#:use-module (guix build-system gnu)
#:use-module (guix build-system go)
#:use-module (guix build-system meson)
+ #:use-module (guix build-system pyproject)
#:use-module (guix utils)
#:use-module (gnu packages admin)
#:use-module (gnu packages autotools)
@@ -401,6 +402,29 @@ (define-public podman
containers.")
(license license:asl2.0)))
+(define-public podman-compose
+ (package
+ (name "podman-compose")
+ (version "1.0.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/containers/podman-compose.git")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "11dwpifkm20vyi6r3fgmiiqc01mpm4r8l0p5gfh0bawi2gklrhsf"))))
+ (propagated-inputs
+ (list python-pyyaml
+ python-dotenv))
+ (build-system pyproject-build-system)
+ (home-page "https://github.com/containers/podman-compose")
+ (synopsis "a script to run docker-compose.yml using podman")
+ (description "An implementation of Compose Spec with Podman backend, to
+allow you to run docker-compose.yml files with Podman.")
+ (license license:gpl2)))
+
(define-public buildah
(package
(name "buildah")
--
2.41.0
This bug report was last modified 1 year and 53 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.