Browse Source
Prefer container IPs over hostnames in btcpay-server app (#668)
rtl-0.10.1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
apps/btcpay-server/docker-compose.yml
|
@ -49,11 +49,11 @@ services: |
|
|
BTCPAY_DATADIR: "/data" |
|
|
BTCPAY_DATADIR: "/data" |
|
|
BTCPAY_PLUGINDIR: "/data/plugins" |
|
|
BTCPAY_PLUGINDIR: "/data/plugins" |
|
|
BTCPAY_DOCKERDEPLOYMENT: "false" |
|
|
BTCPAY_DOCKERDEPLOYMENT: "false" |
|
|
BTCPAY_POSTGRES: "User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver$BITCOIN_NETWORK" |
|
|
BTCPAY_POSTGRES: "User ID=postgres;Host=$APP_BTCPAY_SERVER_DB_IP;Port=5432;Database=btcpayserver$BITCOIN_NETWORK" |
|
|
BTCPAY_NETWORK: "$BITCOIN_NETWORK" |
|
|
BTCPAY_NETWORK: "$BITCOIN_NETWORK" |
|
|
BTCPAY_BIND: 0.0.0.0:$APP_BTCPAY_SERVER_PORT |
|
|
BTCPAY_BIND: 0.0.0.0:$APP_BTCPAY_SERVER_PORT |
|
|
BTCPAY_CHAINS: "btc" |
|
|
BTCPAY_CHAINS: "btc" |
|
|
BTCPAY_BTCEXPLORERURL: "http://nbxplorer:32838" |
|
|
BTCPAY_BTCEXPLORERURL: "http://$APP_BTCPAY_SERVER_NBXPLORER_IP:32838" |
|
|
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=https://$LND_IP:$LND_REST_PORT/;macaroonfilepath=/lnd/data/chain/bitcoin/$BITCOIN_NETWORK/admin.macaroon;allowinsecure=true" |
|
|
BTCPAY_BTCLIGHTNING: "type=lnd-rest;server=https://$LND_IP:$LND_REST_PORT/;macaroonfilepath=/lnd/data/chain/bitcoin/$BITCOIN_NETWORK/admin.macaroon;allowinsecure=true" |
|
|
BTCPAY_SOCKSENDPOINT: $TOR_PROXY_IP:$TOR_PROXY_PORT |
|
|
BTCPAY_SOCKSENDPOINT: $TOR_PROXY_IP:$TOR_PROXY_PORT |
|
|
networks: |
|
|
networks: |
|
|