Make BTCPay Image management easier

This commit is contained in:
Taylor Helsper 2020-01-20 19:32:16 -06:00
parent 2b58fca425
commit 32b364ce2a
2 changed files with 8 additions and 3 deletions

View File

@ -20,3 +20,8 @@ BTCPAY_CRYPTOS=btc
WOOCOMMERCE_HOST=
TOR_RELAY_NICKNAME=
TOR_RELAY_EMAIL=
# myNode Additions
BTCPAY_VERSION=1.0.3.153
NBXPLORER_VERSION=2.1.2
POSTGRES_VERSION=9.6.5

View File

@ -2,7 +2,7 @@ version: "3"
services:
btcpayserver:
restart: unless-stopped
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.147}
image: btcpayserver/btcpayserver:${BTCPAY_VERSION}
network_mode: host
# expose:
# - "49392"
@ -36,7 +36,7 @@ services:
- "/mnt/hdd/mynode/lnd:/etc/lnd_bitcoin"
nbxplorer:
restart: unless-stopped
image: nicolasdorier/nbxplorer:2.1.2
image: nicolasdorier/nbxplorer:${NBXPLORER_VERSION}
network_mode: host
# expose:
# - "32838"
@ -52,7 +52,7 @@ services:
- "/mnt/hdd/mynode/bitcoin:/root/.bitcoin"
postgres:
restart: unless-stopped
image: postgres:9.6.5
image: postgres:${POSTGRES_VERSION}
network_mode: host
volumes:
- "postgres_datadir:/var/lib/postgresql/data"