mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-12 13:00:41 +02:00
Yamllint'ed all files and made them compliant. (#379)
Co-authored-by: max <max@RedRapier.local>
This commit is contained in:
parent
f48fb291c1
commit
ea9abe6301
@ -36,7 +36,7 @@ services:
|
||||
- "lnd_bitcoingold_datadir:/etc/lnd_bitcoingold"
|
||||
links:
|
||||
- lnd_bitcoingold
|
||||
|
||||
|
||||
nginx:
|
||||
links:
|
||||
- "lnd_bitcoingold"
|
||||
@ -52,4 +52,4 @@ volumes:
|
||||
lnd_bitcoingold_datadir:
|
||||
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "opt-add-zmq"
|
||||
|
@ -2,30 +2,30 @@ version: "3"
|
||||
|
||||
services:
|
||||
bgoldd:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bgoldd
|
||||
image: kamigawabul/docker-bitcoingold:0.15.2
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bgold_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bgoldd
|
||||
image: kamigawabul/docker-bitcoingold:0.15.2
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bgold_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btg"
|
||||
NBXPLORER_BTGRPCURL: http://bgoldd:43782/
|
||||
NBXPLORER_BTGNODEENDPOINT: bgoldd:39388
|
||||
volumes:
|
||||
- "bgold_datadir:/root/.bitcoingold"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btg"
|
||||
NBXPLORER_BTGRPCURL: http://bgoldd:43782/
|
||||
NBXPLORER_BTGNODEENDPOINT: bgoldd:39388
|
||||
volumes:
|
||||
- "bgold_datadir:/root/.bitcoingold"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "btg"
|
||||
BTCPAY_BTGEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "btg"
|
||||
BTCPAY_BTGEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
bgold_datadir:
|
||||
|
@ -50,7 +50,7 @@ services:
|
||||
links:
|
||||
- clightning_bitcoin
|
||||
expose:
|
||||
- "9737"
|
||||
- "9737"
|
||||
|
||||
clightning_bitcoin_rest:
|
||||
image: saubyk/c-lightning-rest:0.3.0
|
||||
@ -87,8 +87,8 @@ services:
|
||||
- "clightning_bitcoin_rtl_datadir:/data"
|
||||
- "clightning_bitcoin_rest_datadir:/etc/clightning_bitcoin_rest"
|
||||
expose:
|
||||
- "3000"
|
||||
|
||||
- "3000"
|
||||
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_BTCLIGHTNING: "type=clightning;server=unix://etc/clightning_bitcoin/lightning-rpc"
|
||||
|
@ -32,14 +32,14 @@ services:
|
||||
-Declair.bitcoind.zmqblock=tcp://bitcoind:28332
|
||||
-Declair.bitcoind.zmqtx=tcp://bitcoind:28333
|
||||
expose:
|
||||
- "9735" # server port
|
||||
- "8080" # api port
|
||||
- "9735" # server port
|
||||
- "8080" # api port
|
||||
volumes:
|
||||
- "bitcoin_datadir:/etc/bitcoin"
|
||||
- "eclair_bitcoin_datadir:/data"
|
||||
links:
|
||||
- bitcoind
|
||||
|
||||
|
||||
bitcoin_rtl:
|
||||
image: shahanafarooqui/rtl:0.8.2
|
||||
restart: unless-stopped
|
||||
|
@ -82,7 +82,7 @@ services:
|
||||
# We need to use rpcauth because we also need cookieauth. rpcpassword disabled cookie file auth.
|
||||
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
||||
rpcauth=lnd:d031f7567c5b02ba95524170e51c77f4$$827ce5412f653d6613c2f480e521eb437c866b999bdeb2ee4f9c41d3b00dff1c
|
||||
|
||||
|
||||
nginx:
|
||||
links:
|
||||
- "lnd_bitcoin"
|
||||
@ -99,4 +99,4 @@ volumes:
|
||||
lnd_bitcoin_rtl_datadir:
|
||||
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "opt-add-zmq"
|
||||
|
@ -2,34 +2,34 @@ version: "3"
|
||||
|
||||
services:
|
||||
bitcoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bitcoind
|
||||
image: btcpayserver/bitcoin:0.20.1
|
||||
environment:
|
||||
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
BITCOIN_WALLETDIR: "/walletdata"
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
rpcbind=0.0.0.0:43782
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bitcoin_datadir:/data"
|
||||
- "bitcoin_wallet_datadir:/walletdata"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bitcoind
|
||||
image: btcpayserver/bitcoin:0.20.1
|
||||
environment:
|
||||
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
BITCOIN_WALLETDIR: "/walletdata"
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
rpcbind=0.0.0.0:43782
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bitcoin_datadir:/data"
|
||||
- "bitcoin_wallet_datadir:/walletdata"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btc"
|
||||
NBXPLORER_BTCRPCURL: http://bitcoind:43782/
|
||||
NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
|
||||
volumes:
|
||||
- "bitcoin_datadir:/root/.bitcoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btc"
|
||||
NBXPLORER_BTCRPCURL: http://bitcoind:43782/
|
||||
NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
|
||||
volumes:
|
||||
- "bitcoin_datadir:/root/.bitcoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "btc"
|
||||
BTCPAY_BTCEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "btc"
|
||||
BTCPAY_BTCEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
bitcoin_datadir:
|
||||
bitcoin_wallet_datadir:
|
||||
bitcoin_wallet_datadir:
|
||||
|
@ -2,34 +2,34 @@ version: "3"
|
||||
|
||||
services:
|
||||
bitcoinplusd:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bitcoinplusd
|
||||
image: chekaz/docker-bitcoinplus:2.7.0
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bitcoinplus_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bitcoinplusd
|
||||
image: chekaz/docker-bitcoinplus:2.7.0
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "bitcoinplus_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "xbc"
|
||||
NBXPLORER_XBCRPCURL: http://bitcoinplusd:43782/
|
||||
NBXPLORER_XBCNODEENDPOINT: bitcoinplusd:39388
|
||||
NBXPLORER_XBCRPCUSER: "NBXPLORER_XBCRPCUSER"
|
||||
NBXPLORER_XBCRPCPASSWORD: "NBXPLORER_XBCRPCPASS"
|
||||
links:
|
||||
- bitcoinplusd
|
||||
volumes:
|
||||
- "bitcoinplus_datadir:/root/.bitcoinplus"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "xbc"
|
||||
NBXPLORER_XBCRPCURL: http://bitcoinplusd:43782/
|
||||
NBXPLORER_XBCNODEENDPOINT: bitcoinplusd:39388
|
||||
NBXPLORER_XBCRPCUSER: "NBXPLORER_XBCRPCUSER"
|
||||
NBXPLORER_XBCRPCPASSWORD: "NBXPLORER_XBCRPCPASS"
|
||||
links:
|
||||
- bitcoinplusd
|
||||
volumes:
|
||||
- "bitcoinplus_datadir:/root/.bitcoinplus"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "xbc"
|
||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "xbc"
|
||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
bitcoinplus_datadir:
|
||||
|
@ -17,18 +17,18 @@ services:
|
||||
volumes:
|
||||
- "bitcore_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btx"
|
||||
NBXPLORER_BTXRPCURL: http://bitcored:43782/
|
||||
NBXPLORER_BTXNODEENDPOINT: bitcored:39388
|
||||
links:
|
||||
- bitcored
|
||||
volumes:
|
||||
- "bitcore_datadir:/root/.bitcore"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "btx"
|
||||
NBXPLORER_BTXRPCURL: http://bitcored:43782/
|
||||
NBXPLORER_BTXNODEENDPOINT: bitcored:39388
|
||||
links:
|
||||
- bitcored
|
||||
volumes:
|
||||
- "bitcore_datadir:/root/.bitcore"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_BTXEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "btx"
|
||||
environment:
|
||||
BTCPAY_BTXEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "btx"
|
||||
|
||||
volumes:
|
||||
bitcore_datadir:
|
||||
bitcore_datadir:
|
||||
|
@ -9,8 +9,8 @@ services:
|
||||
VIRTUAL_PORT: 49392
|
||||
VIRTUAL_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS}
|
||||
VIRTUAL_HOST_NAME: "btcpay"
|
||||
SSL_POLICY: Mozilla-Modern
|
||||
SSL_POLICY: Mozilla-Modern
|
||||
|
||||
# Let's encrypt settings
|
||||
LETSENCRYPT_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS}
|
||||
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:-<no value>}
|
||||
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:-<no value>}
|
||||
|
@ -2,8 +2,8 @@ version: "3"
|
||||
|
||||
services:
|
||||
btcpayserver:
|
||||
ports:
|
||||
ports:
|
||||
- "80:49392"
|
||||
|
||||
exclusive:
|
||||
- proxy
|
||||
- proxy
|
||||
|
@ -22,9 +22,9 @@ services:
|
||||
links:
|
||||
- postgres
|
||||
volumes:
|
||||
- "btcpay_datadir:/datadir"
|
||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||
- "$<BTCPAY_HOST_SSHAUTHORIZEDKEYS>?:${BTCPAY_SSHAUTHORIZEDKEYS}"
|
||||
- "btcpay_datadir:/datadir"
|
||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||
- "$<BTCPAY_HOST_SSHAUTHORIZEDKEYS>?:${BTCPAY_SSHAUTHORIZEDKEYS}"
|
||||
|
||||
volumes:
|
||||
btcpay_datadir:
|
||||
@ -34,4 +34,4 @@ required:
|
||||
- "nbxplorer"
|
||||
- "btcpayserver"
|
||||
recommended:
|
||||
- "opt-add-tor"
|
||||
- "opt-add-tor"
|
||||
|
@ -2,30 +2,30 @@ version: "3"
|
||||
|
||||
services:
|
||||
dashd:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_dashd
|
||||
image: btcpayserver/dash:0.14.0.1
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=9999
|
||||
rpcport=9998
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "9998"
|
||||
- "9999"
|
||||
volumes:
|
||||
- "dash_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_dashd
|
||||
image: btcpayserver/dash:0.14.0.1
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=9999
|
||||
rpcport=9998
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "9998"
|
||||
- "9999"
|
||||
volumes:
|
||||
- "dash_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "dash"
|
||||
NBXPLORER_DASHRPCURL: http://dashd:9998/
|
||||
NBXPLORER_DASHNODEENDPOINT: dashd:9999
|
||||
volumes:
|
||||
- "dash_datadir:/root/.dashcore"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "dash"
|
||||
NBXPLORER_DASHRPCURL: http://dashd:9998/
|
||||
NBXPLORER_DASHNODEENDPOINT: dashd:9999
|
||||
volumes:
|
||||
- "dash_datadir:/root/.dashcore"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "dash"
|
||||
BTCPAY_DASHEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "dash"
|
||||
BTCPAY_DASHEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
dash_datadir:
|
||||
|
@ -2,40 +2,40 @@ version: "3"
|
||||
|
||||
services:
|
||||
dogecoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_dogecoind
|
||||
image: rockstardev/dogecoin:1.10.0
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: |
|
||||
rpcuser=ceiwHEbqWI83
|
||||
rpcpassword=DwubwWsoo3
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
server=1
|
||||
rpcport=22555
|
||||
port=22556
|
||||
whitelist=0.0.0.0/0
|
||||
# Reducing memory usage of dogecoind. Don't try running this container without at least 2 GB of memory
|
||||
# https://www.reddit.com/r/dogecoin/comments/5wynqe/reducing_memory_usage_of_dogecoind/
|
||||
dbcache=50
|
||||
ports:
|
||||
- "22555:22555"
|
||||
expose:
|
||||
- "22555" # RPC
|
||||
- "22556" # P2P
|
||||
volumes:
|
||||
- "dogecoin_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_dogecoind
|
||||
image: rockstardev/dogecoin:1.10.0
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: |
|
||||
rpcuser=ceiwHEbqWI83
|
||||
rpcpassword=DwubwWsoo3
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
server=1
|
||||
rpcport=22555
|
||||
port=22556
|
||||
whitelist=0.0.0.0/0
|
||||
# Reducing memory usage of dogecoind. Don't try running this container without at least 2 GB of memory
|
||||
# https://www.reddit.com/r/dogecoin/comments/5wynqe/reducing_memory_usage_of_dogecoind/
|
||||
dbcache=50
|
||||
ports:
|
||||
- "22555:22555"
|
||||
expose:
|
||||
- "22555" # RPC
|
||||
- "22556" # P2P
|
||||
volumes:
|
||||
- "dogecoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "doge"
|
||||
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
|
||||
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
|
||||
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
|
||||
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
|
||||
volumes:
|
||||
- "dogecoin_datadir:/root/.dogecoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "doge"
|
||||
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
|
||||
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
|
||||
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
|
||||
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
|
||||
volumes:
|
||||
- "dogecoin_datadir:/root/.dogecoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "doge"
|
||||
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "doge"
|
||||
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
dogecoin_datadir:
|
||||
|
@ -3,4 +3,4 @@ version: "3"
|
||||
services:
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "eth"
|
||||
BTCPAY_CHAINS: "eth"
|
||||
|
@ -2,30 +2,30 @@ version: "3"
|
||||
|
||||
services:
|
||||
feathercoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_feathercoind
|
||||
image: chekaz/docker-feathercoin:0.16.3
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "feathercoin_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_feathercoind
|
||||
image: chekaz/docker-feathercoin:0.16.3
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "feathercoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "ftc"
|
||||
NBXPLORER_FTCRPCURL: http://feathercoind:43782/
|
||||
NBXPLORER_FTCNODEENDPOINT: feathercoind:39388
|
||||
volumes:
|
||||
- "feathercoin_datadir:/root/.feathercoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "ftc"
|
||||
NBXPLORER_FTCRPCURL: http://feathercoind:43782/
|
||||
NBXPLORER_FTCNODEENDPOINT: feathercoind:39388
|
||||
volumes:
|
||||
- "feathercoin_datadir:/root/.feathercoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "ftc"
|
||||
BTCPAY_FTCEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "ftc"
|
||||
BTCPAY_FTCEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
feathercoin_datadir:
|
||||
|
@ -61,12 +61,12 @@ services:
|
||||
NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
SPARK_OPT: --no-tls --port 9739 -C /data/.cookie
|
||||
volumes:
|
||||
- "clightning_groestlcoin_datadir:/etc/lightning"
|
||||
- "clightning_groestlcoin_spark:/data"
|
||||
- "clightning_groestlcoin_datadir:/etc/lightning"
|
||||
- "clightning_groestlcoin_spark:/data"
|
||||
links:
|
||||
- clightning_groestlcoin
|
||||
- clightning_groestlcoin
|
||||
expose:
|
||||
- "9739"
|
||||
- "9739"
|
||||
volumes:
|
||||
clightning_groestlcoin_datadir:
|
||||
clightning_groestlcoin_charge:
|
||||
|
@ -32,8 +32,8 @@ services:
|
||||
-Declair.bitcoind.zmqblock=tcp://groestlcoind:21441
|
||||
-Declair.bitcoind.zmqtx=tcp://groestlcoind:21441
|
||||
expose:
|
||||
- "9735" # server port
|
||||
- "8080" # api port
|
||||
- "9735" # server port
|
||||
- "8080" # api port
|
||||
volumes:
|
||||
- "groestlcoin_datadir:/etc/groestlcoin"
|
||||
- "eclair_groestlcoin_datadir:/data"
|
||||
@ -51,4 +51,4 @@ volumes:
|
||||
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "opt-txindex"
|
||||
- "opt-txindex"
|
||||
|
@ -61,4 +61,4 @@ volumes:
|
||||
lnd_groestlcoin_datadir:
|
||||
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "opt-add-zmq"
|
||||
|
@ -2,30 +2,30 @@ version: "3"
|
||||
|
||||
services:
|
||||
groestlcoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_groestlcoind
|
||||
image: groestlcoin/docker-groestlcoin:2.20.1
|
||||
environment:
|
||||
GROESTLCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "groestlcoin_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_groestlcoind
|
||||
image: groestlcoin/docker-groestlcoin:2.20.1
|
||||
environment:
|
||||
GROESTLCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "groestlcoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "grs"
|
||||
NBXPLORER_GRSRPCURL: http://groestlcoind:43782/
|
||||
NBXPLORER_GRSNODEENDPOINT: groestlcoind:39388
|
||||
volumes:
|
||||
- "groestlcoin_datadir:/root/.groestlcoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "grs"
|
||||
NBXPLORER_GRSRPCURL: http://groestlcoind:43782/
|
||||
NBXPLORER_GRSNODEENDPOINT: groestlcoind:39388
|
||||
volumes:
|
||||
- "groestlcoin_datadir:/root/.groestlcoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "grs"
|
||||
BTCPAY_GRSEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "grs"
|
||||
BTCPAY_GRSEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
groestlcoin_datadir:
|
||||
|
@ -2,37 +2,37 @@ version: "3"
|
||||
|
||||
services:
|
||||
elementsd_liquid:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_elementsd_liquid
|
||||
image: btcpayserver/elements:0.18.1.7
|
||||
environment:
|
||||
ELEMENTS_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
ELEMENTS_MAINNET_CHAIN: "liquidv1"
|
||||
ELEMENTS_WALLETDIR: "/walletdata"
|
||||
ELEMENTS_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
rpcbind=0.0.0.0:43782
|
||||
rpcauth=liquid:c8bf1a8961d97f224cb21224aaa8235d$$402f4a8907683d057b8c58a42940b6e54d1638322a42986ae28ebb844e603ae6
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
validatepegin=0
|
||||
prune=5000
|
||||
fallbackfee=0.000001
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "elements_datadir:/data"
|
||||
- "elements_wallet_datadir:/walletdata"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_elementsd_liquid
|
||||
image: btcpayserver/elements:0.18.1.7
|
||||
environment:
|
||||
ELEMENTS_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
ELEMENTS_MAINNET_CHAIN: "liquidv1"
|
||||
ELEMENTS_WALLETDIR: "/walletdata"
|
||||
ELEMENTS_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
rpcbind=0.0.0.0:43782
|
||||
rpcauth=liquid:c8bf1a8961d97f224cb21224aaa8235d$$402f4a8907683d057b8c58a42940b6e54d1638322a42986ae28ebb844e603ae6
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
validatepegin=0
|
||||
prune=5000
|
||||
fallbackfee=0.000001
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "elements_datadir:/data"
|
||||
- "elements_wallet_datadir:/walletdata"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "lbtc"
|
||||
NBXPLORER_LBTCRPCURL: http://elementsd_liquid:43782/
|
||||
NBXPLORER_LBTCNODEENDPOINT: elementsd_liquid:39388
|
||||
NBXPLORER_LBTCRPCUSER: "liquid"
|
||||
NBXPLORER_LBTCRPCPASSWORD: "liquid"
|
||||
volumes:
|
||||
- "elements_datadir:/root/.elements"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "lbtc"
|
||||
NBXPLORER_LBTCRPCURL: http://elementsd_liquid:43782/
|
||||
NBXPLORER_LBTCNODEENDPOINT: elementsd_liquid:39388
|
||||
NBXPLORER_LBTCRPCUSER: "liquid"
|
||||
NBXPLORER_LBTCRPCPASSWORD: "liquid"
|
||||
volumes:
|
||||
- "elements_datadir:/root/.elements"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "lbtc"
|
||||
|
@ -31,4 +31,4 @@ services:
|
||||
links:
|
||||
- clightning_litecoin
|
||||
volumes:
|
||||
clightning_litecoin_datadir:
|
||||
clightning_litecoin_datadir:
|
||||
|
@ -49,4 +49,4 @@ volumes:
|
||||
lnd_litecoin_datadir:
|
||||
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "opt-add-zmq"
|
||||
|
@ -17,16 +17,16 @@ services:
|
||||
volumes:
|
||||
- "litecoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "ltc"
|
||||
NBXPLORER_LTCRPCURL: http://litecoind:43782/
|
||||
NBXPLORER_LTCNODEENDPOINT: litecoind:39388
|
||||
volumes:
|
||||
- "litecoin_datadir:/root/.litecoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "ltc"
|
||||
NBXPLORER_LTCRPCURL: http://litecoind:43782/
|
||||
NBXPLORER_LTCNODEENDPOINT: litecoind:39388
|
||||
volumes:
|
||||
- "litecoin_datadir:/root/.litecoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_LTCEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "ltc"
|
||||
environment:
|
||||
BTCPAY_LTCEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "ltc"
|
||||
|
||||
volumes:
|
||||
litecoin_datadir:
|
||||
litecoin_datadir:
|
||||
|
@ -17,16 +17,16 @@ services:
|
||||
volumes:
|
||||
- "monacoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "mona"
|
||||
NBXPLORER_MONARPCURL: http://monacoind:43782/
|
||||
NBXPLORER_MONANODEENDPOINT: monacoind:39388
|
||||
volumes:
|
||||
- "monacoin_datadir:/root/.monacoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "mona"
|
||||
NBXPLORER_MONARPCURL: http://monacoind:43782/
|
||||
NBXPLORER_MONANODEENDPOINT: monacoind:39388
|
||||
volumes:
|
||||
- "monacoin_datadir:/root/.monacoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_MONAEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "mona"
|
||||
environment:
|
||||
BTCPAY_MONAEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "mona"
|
||||
|
||||
volumes:
|
||||
monacoin_datadir:
|
||||
monacoin_datadir:
|
||||
|
@ -5,7 +5,7 @@ services:
|
||||
nbxplorer:
|
||||
restart: unless-stopped
|
||||
image: nicolasdorier/nbxplorer:2.1.42
|
||||
expose:
|
||||
expose:
|
||||
- "32838"
|
||||
environment:
|
||||
NBXPLORER_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
@ -16,4 +16,4 @@ services:
|
||||
- "nbxplorer_datadir:/datadir"
|
||||
|
||||
volumes:
|
||||
nbxplorer_datadir:
|
||||
nbxplorer_datadir:
|
||||
|
@ -26,4 +26,4 @@ services:
|
||||
|
||||
nginx-gen:
|
||||
volumes:
|
||||
- "nginx_certs:/etc/nginx/certs:ro"
|
||||
- "nginx_certs:/etc/nginx/certs:ro"
|
||||
|
@ -28,14 +28,14 @@ services:
|
||||
- btcpayserver
|
||||
- nginx
|
||||
volumes:
|
||||
nginx_conf:
|
||||
nginx_vhost:
|
||||
nginx_html:
|
||||
nginx_certs:
|
||||
nginx_conf:
|
||||
nginx_vhost:
|
||||
nginx_html:
|
||||
nginx_certs:
|
||||
|
||||
exclusive:
|
||||
- proxy
|
||||
required:
|
||||
- "btcpayserver-nginx"
|
||||
recommended:
|
||||
- "nginx-https"
|
||||
- "nginx-https"
|
||||
|
@ -11,7 +11,7 @@ services:
|
||||
CALLBACK_URL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/btcqbo/qbologged
|
||||
expose:
|
||||
- "8001"
|
||||
links:
|
||||
links:
|
||||
- redis
|
||||
redis:
|
||||
image: redis:5.0.2-alpine
|
||||
@ -23,4 +23,4 @@ services:
|
||||
environment:
|
||||
BTCPAY_EXTERNALSERVICES: "Quickbooks Online Connector:btcqbo;"
|
||||
volumes:
|
||||
redis_datadir:
|
||||
redis_datadir:
|
||||
|
@ -26,10 +26,10 @@ services:
|
||||
- postgres
|
||||
- nbxplorer
|
||||
volumes:
|
||||
- "btctransmuter_datadir:/app/data"
|
||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||
- "btctransmuter_datadir:/app/data"
|
||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_EXTERNALSERVICES: "BTC Transmuter:btctransmuter;"
|
||||
volumes:
|
||||
btctransmuter_datadir:
|
||||
btctransmuter_datadir:
|
||||
|
@ -36,4 +36,3 @@ services:
|
||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||
volumes:
|
||||
electrum_ps_datadir:
|
||||
|
||||
|
@ -19,4 +19,4 @@ services:
|
||||
- "./pihole/resolv.conf:/etc/resolv.conf:ro"
|
||||
- "pihole_datadir:/etc/pihole"
|
||||
volumes:
|
||||
pihole_datadir:
|
||||
pihole_datadir:
|
||||
|
@ -32,4 +32,4 @@ volumes:
|
||||
required:
|
||||
- "opt-add-zmq"
|
||||
- "bitcoin"
|
||||
- "opt-txindex"
|
||||
- "opt-txindex"
|
||||
|
@ -11,7 +11,7 @@ services:
|
||||
stop_signal: SIGKILL
|
||||
environment:
|
||||
BASE_PATH: "/thub"
|
||||
NO_VERSION_CHECK : "true"
|
||||
NO_VERSION_CHECK: "true"
|
||||
COOKIE_PATH: "/data/.cookie"
|
||||
SSO_SERVER_URL: "lnd_bitcoin:10009"
|
||||
SSO_MACAROON_PATH: "/etc/lnd"
|
||||
|
@ -14,7 +14,7 @@ services:
|
||||
environment:
|
||||
TOR_RELAY_NICKNAME: ${TOR_RELAY_NICKNAME}
|
||||
TOR_RELAY_EMAIL: ${TOR_RELAY_EMAIL}
|
||||
|
||||
|
||||
tor-relay:
|
||||
restart: unless-stopped
|
||||
image: btcpayserver/tor:0.4.2.7
|
||||
@ -25,9 +25,9 @@ services:
|
||||
volumes:
|
||||
- "tor_relay_datadir:/home/tor/.tor"
|
||||
- "tor_relay_torrcdir:/usr/local/etc/tor"
|
||||
ports:
|
||||
ports:
|
||||
- "9001:9001"
|
||||
- "9030:9030"
|
||||
- "9030:9030"
|
||||
volumes:
|
||||
tor_relay_datadir:
|
||||
tor_relay_torrcdir:
|
||||
tor_relay_torrcdir:
|
||||
|
@ -1,5 +1,5 @@
|
||||
# This will expose BTCPayServer, Woocommerce, your lightning nodes as hidden services and accept onion peers for your full node.
|
||||
# Warning: This options is for working around NAT and firewall problems as well as to help protect your customer's privacy.
|
||||
# This will expose BTCPayServer, Woocommerce, your lightning nodes as hidden services and accept onion peers for your full node.
|
||||
# Warning: This options is for working around NAT and firewall problems as well as to help protect your customer's privacy.
|
||||
# This will not protect your privacy against a targeted attack against your own privacy.
|
||||
# All outbound traffic is not channeled through the TOR SOCKS proxy
|
||||
version: "3"
|
||||
@ -15,7 +15,7 @@ services:
|
||||
volumes:
|
||||
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
||||
- "tor_torrcdir:/usr/local/etc/tor/"
|
||||
|
||||
|
||||
btctransmuter:
|
||||
environment:
|
||||
HIDDENSERVICE_NAME: BTCTransmuter
|
||||
@ -25,7 +25,7 @@ services:
|
||||
volumes:
|
||||
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
||||
- "tor_torrcdir:/usr/local/etc/tor/"
|
||||
|
||||
|
||||
configurator:
|
||||
environment:
|
||||
HIDDENSERVICE_NAME: Configurator
|
||||
@ -33,7 +33,7 @@ services:
|
||||
volumes:
|
||||
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
||||
- "tor_torrcdir:/usr/local/etc/tor/"
|
||||
|
||||
|
||||
woocommerce:
|
||||
environment:
|
||||
HIDDENSERVICE_NAME: WooCommerce
|
||||
@ -56,9 +56,9 @@ services:
|
||||
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
||||
rpcauth=btcrpc:a6a5d29a3f44f02e4cd8cabb5b10a234$$ab6152915515f6a9cca806d2ab5f0e2794c346ba74f812c61e48241d523778b8
|
||||
volumes:
|
||||
- "tor_datadir:/home/tor/.tor"
|
||||
- "tor_datadir:/home/tor/.tor"
|
||||
links:
|
||||
- tor
|
||||
- tor
|
||||
|
||||
nginx:
|
||||
volumes:
|
||||
@ -77,8 +77,8 @@ services:
|
||||
TOR_EXTRA_ARGS: |
|
||||
CookieAuthentication 1
|
||||
expose:
|
||||
- "9050" # SOCKS
|
||||
- "9051" # Tor Control
|
||||
- "9050" # SOCKS
|
||||
- "9051" # Tor Control
|
||||
volumes:
|
||||
- "tor_datadir:/home/tor/.tor"
|
||||
- "tor_torrcdir:/usr/local/etc/tor"
|
||||
@ -167,6 +167,6 @@ services:
|
||||
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
||||
- "tor_torrcdir:/usr/local/etc/tor/"
|
||||
volumes:
|
||||
tor_datadir:
|
||||
tor_torrcdir:
|
||||
tor_servicesdir:
|
||||
tor_datadir:
|
||||
tor_torrcdir:
|
||||
tor_servicesdir:
|
||||
|
@ -32,8 +32,8 @@ services:
|
||||
- "mariadb_datadir:/var/lib/mysql"
|
||||
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_EXTERNALSERVICES: "WooCommerce:${BTCPAY_PROTOCOL:-https}://${WOOCOMMERCE_HOST};"
|
||||
environment:
|
||||
BTCPAY_EXTERNALSERVICES: "WooCommerce:${BTCPAY_PROTOCOL:-https}://${WOOCOMMERCE_HOST};"
|
||||
volumes:
|
||||
woocommerce_html:
|
||||
mariadb_datadir:
|
||||
mariadb_datadir:
|
||||
|
@ -3,5 +3,5 @@ version: "3"
|
||||
|
||||
services:
|
||||
bitcoind:
|
||||
ports:
|
||||
- "8333:39388"
|
||||
ports:
|
||||
- "8333:39388"
|
||||
|
@ -35,4 +35,4 @@ services:
|
||||
ELEMENTS_EXTRA_ARGS: |
|
||||
dbcache=1024
|
||||
exclusive:
|
||||
- memory
|
||||
- memory
|
||||
|
@ -31,4 +31,4 @@ services:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=50000
|
||||
exclusive:
|
||||
- pruning
|
||||
- pruning
|
||||
|
@ -31,4 +31,4 @@ services:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=25000
|
||||
exclusive:
|
||||
- pruning
|
||||
- pruning
|
||||
|
@ -31,4 +31,4 @@ services:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=5000
|
||||
exclusive:
|
||||
- pruning
|
||||
- pruning
|
||||
|
@ -31,4 +31,4 @@ services:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=100000
|
||||
exclusive:
|
||||
- pruning
|
||||
- pruning
|
||||
|
@ -1,5 +1,5 @@
|
||||
version: "3"
|
||||
# must not use opt-save-storage
|
||||
# must not use opt-save-storage
|
||||
|
||||
services:
|
||||
bitcoind:
|
||||
@ -31,4 +31,4 @@ services:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
txindex=1
|
||||
incompatible:
|
||||
- pruning
|
||||
- pruning
|
||||
|
@ -3,9 +3,9 @@ version: "3"
|
||||
services:
|
||||
postgres:
|
||||
restart: unless-stopped
|
||||
image: postgres:9.6.5
|
||||
image: postgres:9.6.5
|
||||
volumes:
|
||||
- "postgres_datadir:/var/lib/postgresql/data"
|
||||
|
||||
volumes:
|
||||
postgres_datadir:
|
||||
postgres_datadir:
|
||||
|
@ -14,7 +14,7 @@ services:
|
||||
- "./acme.json:/acme.json:ro"
|
||||
- "./servers.toml:/servers.toml"
|
||||
- "./traefik_logs:/traefik_logs"
|
||||
|
||||
|
||||
links:
|
||||
- btcpayserver
|
||||
|
||||
@ -24,4 +24,4 @@ volumes:
|
||||
exclusive:
|
||||
- proxy
|
||||
required:
|
||||
- "traefik"
|
||||
- "traefik"
|
||||
|
@ -2,34 +2,34 @@ version: "3"
|
||||
|
||||
services:
|
||||
trezarcoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_trezarcoind
|
||||
image: chekaz/docker-trezarcoin:0.13.0
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "trezarcoin_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_trezarcoind
|
||||
image: chekaz/docker-trezarcoin:0.13.0
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "trezarcoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "tzc"
|
||||
NBXPLORER_TZCRPCURL: http://trezarcoind:43782/
|
||||
NBXPLORER_TZCNODEENDPOINT: trezarcoind:39388
|
||||
NBXPLORER_TZCRPCUSER: "NBXPLORER_TZCRPCUSER"
|
||||
NBXPLORER_TZCRPCPASSWORD: "NBXPLORER_TZCRPCPASS"
|
||||
links:
|
||||
- trezarcoind
|
||||
volumes:
|
||||
- "trezarcoin_datadir:/root/.trezarcoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "tzc"
|
||||
NBXPLORER_TZCRPCURL: http://trezarcoind:43782/
|
||||
NBXPLORER_TZCNODEENDPOINT: trezarcoind:39388
|
||||
NBXPLORER_TZCRPCUSER: "NBXPLORER_TZCRPCUSER"
|
||||
NBXPLORER_TZCRPCPASSWORD: "NBXPLORER_TZCRPCPASS"
|
||||
links:
|
||||
- trezarcoind
|
||||
volumes:
|
||||
- "trezarcoin_datadir:/root/.trezarcoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "tzc"
|
||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "tzc"
|
||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
trezarcoin_datadir:
|
||||
|
@ -2,30 +2,30 @@ version: "3"
|
||||
|
||||
services:
|
||||
viacoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_viacoind
|
||||
image: romanornr/docker-viacoin:0.15.2
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "viacoin_datadir:/data"
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_viacoind
|
||||
image: romanornr/docker-viacoin:0.15.2
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
rpcport=43782
|
||||
${NBITCOIN_NETWORK:-regtest}=1
|
||||
port=39388
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
- "39388"
|
||||
volumes:
|
||||
- "viacoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "via"
|
||||
NBXPLORER_VIARPCURL: http://viacoind:43782/
|
||||
NBXPLORER_VIANODEENDPOINT: viacoind:39388
|
||||
volumes:
|
||||
- "viacoin_datadir:/root/.viacoin"
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "via"
|
||||
NBXPLORER_VIARPCURL: http://viacoind:43782/
|
||||
NBXPLORER_VIANODEENDPOINT: viacoind:39388
|
||||
volumes:
|
||||
- "viacoin_datadir:/root/.viacoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "via"
|
||||
BTCPAY_VIAEXPLORERURL: http://nbxplorer:32838/
|
||||
environment:
|
||||
BTCPAY_CHAINS: "via"
|
||||
BTCPAY_VIAEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
viacoin_datadir:
|
||||
|
Loading…
Reference in New Issue
Block a user