taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 836b2b7b87c1e1a8bb6b2cfb7c07db1989b2bca5
parent 7a66af50f5e94a34e6d2adad0e4b3956d690b431
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Thu, 12 May 2016 00:55:39 +0200

readme for docker

Diffstat:
Mdocker/taler-full/Dockerfile | 4++--
Adocker/taler-full/README | 15+++++++++++++++
2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/docker/taler-full/Dockerfile b/docker/taler-full/Dockerfile @@ -47,13 +47,13 @@ RUN printf '#!/bin/bash \n \ && taler-exchange-keycheck \ && service postgresql start \ && taler-exchange-dbinit \ - && taler-exchange-httpd' > $HOME/local/bin/launch_exchange.sh \ + && taler-exchange-httpd' > $HOME/local/bin/launch_exchange \ && \ chmod +x $HOME/local/bin/launch_exchange.sh RUN printf '#!/bin/bash \n \ service postgresql start \ && \ - taler-merchant-httpd' > $HOME/local/bin/launch_merchant.sh \ + taler-merchant-httpd' > $HOME/local/bin/launch_merchant \ && \ chmod +x $HOME/local/bin/launch_merchant.sh diff --git a/docker/taler-full/README b/docker/taler-full/README @@ -0,0 +1,15 @@ +Build the image corresponding to the Dockerfile in this directory +by issuing (from this directory): + +$ docker build -t taler . + +Then instantiate the exchange's container with the following command: + +$ docker run taler launch_exchange + +and the merchant container with the following command: + +$ docker run taler launch_merchant + +Please note that the communication between containers is still to be +configured