[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-sandcastle-ng] 01/03: run: source external ports from env vars
From: |
gnunet |
Subject: |
[taler-sandcastle-ng] 01/03: run: source external ports from env vars |
Date: |
Wed, 21 Feb 2024 12:32:27 +0100 |
This is an automated email from the git hooks/post-receive script.
devan-carpenter pushed a commit to branch master
in repository sandcastle-ng.
commit f5394226b250ab22c99282695cf40ebafd6ce45c
Author: Devan Carpenter <devan@taler.net>
AuthorDate: Wed Feb 21 06:30:35 2024 -0500
run: source external ports from env vars
---
sandcastle-run | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/sandcastle-run b/sandcastle-run
index 5fe726d..067feb0 100755
--- a/sandcastle-run
+++ b/sandcastle-run
@@ -4,13 +4,13 @@
set -exou
-SANDCASTLE_PORT_MERCHANT=16000
-SANDCASTLE_PORT_EXCHANGE=16001
-SANDCASTLE_PORT_BLOG=16002
-SANDCASTLE_PORT_DONATIONS=16003
-SANDCASTLE_PORT_LANDING=16005
-SANDCASTLE_PORT_LIBEUFIN_BANK=16007
-SANDCASTLE_PORT_BANK_SPA=16009
+SANDCASTLE_PORT_MERCHANT=${SANDCASTLE_PORT_MERCHANT:-16000}
+SANDCASTLE_PORT_EXCHANGE=${SANDCASTLE_PORT_EXCHANGE:-16001}
+SANDCASTLE_PORT_BLOG=${SANDCASTLE_PORT_BLOG:-16002}
+SANDCASTLE_PORT_DONATIONS=${SANDCASTLE_PORT_DONATIONS:-16003}
+SANDCASTLE_PORT_LANDING=${SANDCASTLE_PORT_LANDING:-16005}
+SANDCASTLE_PORT_LIBEUFIN_BANK=${SANDCASTLE_PORT_LIBEUFIN_BANK:-16007}
+SANDCASTLE_PORT_BANK_SPA=${SANDCASTLE_PORT_BANK_SPA:-16009}
# Container-internal ports, should by synced with scripts/setup-sandcastle.sh
PORT_INTERNAL_EXCHANGE=8201
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.