[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/08: gnu: Add docker-compose.
From: |
David Thompson |
Subject: |
08/08: gnu: Add docker-compose. |
Date: |
Thu, 14 Jan 2016 14:19:46 +0000 |
davexunit pushed a commit to branch master
in repository guix.
commit df1f1d693665bdbaeade86632636377dfe0d1767
Author: David Thompson <address@hidden>
Date: Mon Jan 11 13:36:26 2016 -0500
gnu: Add docker-compose.
* gnu/packages/docker.scm (docker-compose): New variable.
---
gnu/packages/docker.scm | 34 ++++++++++++++++++++++++++++++++++
1 files changed, 34 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/docker.scm b/gnu/packages/docker.scm
index f216421..06b72ee 100644
--- a/gnu/packages/docker.scm
+++ b/gnu/packages/docker.scm
@@ -71,3 +71,37 @@ management tool.")
pseudo-terminal (PTY) allocated to a Docker container using the Python
client.")
(license license:asl2.0)))
+
+(define-public docker-compose
+ (package
+ (name "docker-compose")
+ (version "1.5.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "docker-compose" version))
+ (sha256
+ (base32
+ "0ksg7hm2yvc977968dixxisrhcmvskzpcx3pz0v1kazrdqp7xakr"))))
+ (build-system python-build-system)
+ ;; TODO: Tests require running Docker daemon.
+ (arguments '(#:tests? #f))
+ (inputs
+ `(("python-docker-py" ,python-docker-py)
+ ("python-dockerpty" ,python-dockerpty)
+ ("python-docopt" ,python-docopt)
+ ("python-enum34" ,python-enum34)
+ ("python-jsonschema" ,python-jsonschema)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-requests" ,python-requests-2.7)
+ ("python-setuptools" ,python-setuptools)
+ ("python-six" ,python-six)
+ ("python-texttable" ,python-texttable)
+ ("python-websocket-client" ,python-websocket-client)))
+ (home-page "https://www.docker.com/")
+ (synopsis "Multi-container orchestration for Docker")
+ (description "Docker Compose is a tool for defining and running
+multi-container Docker applications. A Compose file is used to configure an
+application’s services. Then, using a single command, the containers are
+created and all the services are started as specified in the configuration.")
+ (license license:asl2.0)))
- branch master updated (3141b83 -> df1f1d6), David Thompson, 2016/01/14
- 01/08: gnu: Add version 2.7 variant of python-requests., David Thompson, 2016/01/14
- 03/08: gnu: Update python-jsonschema to 2.5.1., David Thompson, 2016/01/14
- 07/08: gnu: Add python-dockerpty., David Thompson, 2016/01/14
- 08/08: gnu: Add docker-compose.,
David Thompson <=
- 05/08: gnu: Add python-websocket-client., David Thompson, 2016/01/14
- 04/08: gnu: Add python-texttable., David Thompson, 2016/01/14
- 06/08: gnu: Add python-docker-py., David Thompson, 2016/01/14
- 02/08: gnu: Add python-vcversioner., David Thompson, 2016/01/14