summaryrefslogtreecommitdiff
path: root/historic/docker/merchant/docker-compose.yml
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-17 21:20:12 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-17 21:20:12 +0100
commit21c6b40156db5a505215d4ce57fcab0ff6691300 (patch)
tree9dd8b61796c86e1b6694406ad3660cf64d00ce09 /historic/docker/merchant/docker-compose.yml
parentbe061b4da9a8850412c216bdf49589e6951527c5 (diff)
downloaddeployment-21c6b40156db5a505215d4ce57fcab0ff6691300.tar.gz
deployment-21c6b40156db5a505215d4ce57fcab0ff6691300.tar.bz2
deployment-21c6b40156db5a505215d4ce57fcab0ff6691300.zip
move unmaintained files to historic/
Diffstat (limited to 'historic/docker/merchant/docker-compose.yml')
-rw-r--r--historic/docker/merchant/docker-compose.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/historic/docker/merchant/docker-compose.yml b/historic/docker/merchant/docker-compose.yml
new file mode 100644
index 0000000..ccbfb70
--- /dev/null
+++ b/historic/docker/merchant/docker-compose.yml
@@ -0,0 +1,21 @@
+version: '2'
+services:
+ merchant:
+ build: .
+ depends_on:
+ - dbcontainer
+ - exchange
+ ports:
+ - "80:9966"
+ base:
+ build: ../base
+ image: taler/base
+ dbcontainer:
+ image: postgres
+ exchange:
+ build: ../exchange
+ depends_on:
+ - dbcontainer
+ - base
+ image: taler/exchange
+ entrypoint: "true"