taler-deployment

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

commit cd073076d139cf7edb8ba79391c64ecfb41da0dc
parent a06a4a5a6ddd06e2a71283b8c15486312ddd3b3e
Author: MS <ms@taler.net>
Date:   Sun, 20 Nov 2022 20:41:42 +0100

default TALER_DEPLOYMENT_CONFIG

Diffstat:
Mdocker/demo/docker-compose.yml | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/docker/demo/docker-compose.yml b/docker/demo/docker-compose.yml @@ -12,7 +12,7 @@ services: volumes: - talerlogs:/logs - talerdata:/var/lib/postgresql/data/ - - ${TALER_DEPLOYMENT_CONFIG:?Please export TALER_DEPLOYMENT_CONFIG}:/config/deployment.conf + - ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf environment: # root is the only role existing in the DBMS. That # matches the role used by other containers when @@ -36,7 +36,7 @@ services: volumes: - talerlogs:/logs - talerdata:/data - - ${TALER_DEPLOYMENT_CONFIG:?Please export TALER_DEPLOYMENT_CONFIG}:/config/deployment.conf + - ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf merchant: build: ./images/merchant @@ -51,7 +51,7 @@ services: - ${TALER_SYNC_PORT:-5563}:8084 # sync volumes: - talerlogs:/logs - - ${TALER_DEPLOYMENT_CONFIG:?Please export TALER_DEPLOYMENT_CONFIG}:/config/deployment.conf + - ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf bank: build: ./images/libeufin @@ -62,4 +62,4 @@ services: volumes: - talerlogs:/logs - talerdata:/data - - ${TALER_DEPLOYMENT_CONFIG:?Please export TALER_DEPLOYMENT_CONFIG}:/config/deployment.conf + - ${TALER_DEPLOYMENT_CONFIG:-./config/deployment.conf}:/config/deployment.conf