aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/demo/config/deployment-per-service.ts7
1 files changed, 1 insertions, 6 deletions
diff --git a/docker/demo/config/deployment-per-service.ts b/docker/demo/config/deployment-per-service.ts
index cd2eb11..1bcb659 100644
--- a/docker/demo/config/deployment-per-service.ts
+++ b/docker/demo/config/deployment-per-service.ts
@@ -18,14 +18,13 @@ interface NexusAccount {
password: string;
}
-
// Values (potentially) needed by more than one container.
interface GlobalConfig {
currency: string;
dbPassword: string;
exchangeBaseUrl: URL; // used by merchant and exchange.
exchangeNexusAccount: NexusAccount; // used by libeufin and exchange.
- bankAccounts: [BankAccount];
+ bankAccounts: [BankAccount]; // Only used in libeufin.
}
interface BankConfig {
@@ -40,10 +39,6 @@ interface BankWebUi {
backendUrl: URL;
}
-interface ExchangeConfig {
- bankAccount: BankAccount;
-}
-
interface MerchantConfig {
baseUrl: URL;
instances: [InstanceConfig];