Browse Source

bump version

migrate-pregen
nicolas.dorier 7 years ago
parent
commit
603ac8e2bf
  1. 14
      Production/docker-compose.yml
  2. 2
      Regtest/docker-compose.yml

14
Production/docker-compose.yml

@ -51,13 +51,13 @@ services:
btcpayserver: btcpayserver:
restart: always restart: always
image: nicolasdorier/btcpayserver:1.0.0.48 image: nicolasdorier/btcpayserver:1.0.0.49
expose: expose:
- "49392" - "49392"
environment: environment:
# BTCPay settings # BTCPay settings
BTCPAY_POSTGRES: User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver${NBITCOIN_NETWORK-regtest} BTCPAY_POSTGRES: User ID=postgres;Host=postgres;Port=5432;Database=btcpayserver${NBITCOIN_NETWORK:-regtest}
BTCPAY_NETWORK: ${NBITCOIN_NETWORK-regtest} BTCPAY_NETWORK: ${NBITCOIN_NETWORK:-regtest}
BTCPAY_EXPLORERURL: http://nbxplorer:32838/ BTCPAY_EXPLORERURL: http://nbxplorer:32838/
BTCPAY_BIND: 0.0.0.0:49392 BTCPAY_BIND: 0.0.0.0:49392
BTCPAY_INTERNALURL: http://btcpayserver:49392/ BTCPAY_INTERNALURL: http://btcpayserver:49392/
@ -70,7 +70,7 @@ services:
# Let's encrypt settings # Let's encrypt settings
LETSENCRYPT_HOST: ${BTCPAY_HOST} LETSENCRYPT_HOST: ${BTCPAY_HOST}
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL-yourname@example.com} LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:-yourname@example.com}
links: links:
- nbxplorer - nbxplorer
@ -84,9 +84,9 @@ services:
expose: expose:
- "32838" - "32838"
environment: environment:
NBXPLORER_NETWORK: ${NBITCOIN_NETWORK-regtest} NBXPLORER_NETWORK: ${NBITCOIN_NETWORK:-regtest}
NBXPLORER_RPCURL: http://bitcoind:43782/ NBXPLORER_RPCURL: http://bitcoind:43782/
NBXPLORER_RPCCOOKIEFILE: /btc/${BITCOIND_COOKIEFILE-regtest/.cookie} NBXPLORER_RPCCOOKIEFILE: /btc/${BITCOIND_COOKIEFILE:-regtest/.cookie}
NBXPLORER_NODEENDPOINT: bitcoind:39388 NBXPLORER_NODEENDPOINT: bitcoind:39388
NBXPLORER_BIND: 0.0.0.0:32838 NBXPLORER_BIND: 0.0.0.0:32838
NBXPLORER_NOAUTH: 1 NBXPLORER_NOAUTH: 1
@ -103,7 +103,7 @@ services:
environment: environment:
BITCOIN_EXTRA_ARGS: | BITCOIN_EXTRA_ARGS: |
rpcport=43782 rpcport=43782
${BITCOIND_NETWORKPARAMETER-regtest=1} ${BITCOIND_NETWORKPARAMETER:-regtest=1}
port=39388 port=39388
whitelist=0.0.0.0/0 whitelist=0.0.0.0/0
expose: expose:

2
Regtest/docker-compose.yml

@ -3,7 +3,7 @@ version: "3"
services: services:
btcpayserver: btcpayserver:
image: nicolasdorier/btcpayserver:1.0.0.48 image: nicolasdorier/btcpayserver:1.0.0.49
ports: ports:
- 8080:49392 - 8080:49392
expose: expose:

Loading…
Cancel
Save