You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by je...@apache.org on 2015/05/30 14:39:12 UTC

[09/14] allura git commit: [#7806] ticket:773 taskd container

[#7806] ticket:773 taskd container


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/ec37692f
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/ec37692f
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/ec37692f

Branch: refs/heads/ib/7806
Commit: ec37692f24b13a96a0e8e097e495c758a552349d
Parents: ef826f0
Author: Igor Bondarenko <je...@gmail.com>
Authored: Thu May 21 18:38:48 2015 +0300
Committer: Igor Bondarenko <je...@gmail.com>
Committed: Sat May 30 11:17:16 2015 +0300

----------------------------------------------------------------------
 docker-compose.yml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/ec37692f/docker-compose.yml
----------------------------------------------------------------------
diff --git a/docker-compose.yml b/docker-compose.yml
index 0444ba8..853c0de 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -6,13 +6,25 @@ web:
     - "8080:8080"
   volumes:
     - .:/allura
-
     # mounting it separatelly to create git, svn, hg directories automatically
     - /allura-data/scm/git:/allura-data/scm/git
     - /allura-data/scm/hg:/allura-data/scm/hg
     - /allura-data/scm/svn:/allura-data/scm/svn
   links:
     - mongo
+
+taskd:
+  image: allura_web
+  working_dir: /allura/Allura
+  command: paster taskd docker-dev.ini
+  volumes:
+    - .:/allura
+    - /allura-data/scm/git:/allura-data/scm/git
+    - /allura-data/scm/hg:/allura-data/scm/hg
+    - /allura-data/scm/svn:/allura-data/scm/svn
+  links:
+    - mongo
+
 mongo:
   image: mongo:2.6
   expose: