Fix ELECTRUM_TLS_ENABLED Docker variable

This commit is contained in:
Felipe Knorr Kuhn 2022-05-12 10:17:53 -07:00
parent b50f9b4e2d
commit 5d5be6f05d
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A
2 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ Corresponding `docker-compose.yml` overrides:
environment:
ELECTRUM_HOST: ""
ELECTRUM_PORT: ""
ELECTRUM_TLS: ""
ELECTRUM_TLS_ENABLED: ""
...
```

View File

@ -28,7 +28,7 @@ __CORE_RPC_PASSWORD__=${CORE_RPC_PASSWORD:=mempool}
# ELECTRUM
__ELECTRUM_HOST__=${ELECTRUM_HOST:=127.0.0.1}
__ELECTRUM_PORT__=${ELECTRUM_PORT:=50002}
__ELECTRUM_TLS_ENABLED__=${ELECTRUM_TLS:=false}
__ELECTRUM_TLS_ENABLED__=${ELECTRUM_TLS_ENABLED:=false}
# ESPLORA
__ESPLORA_REST_API_URL__=${ESPLORA_REST_API_URL:=http://127.0.0.1:3000}