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
@ -2,30 +2,30 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
bgoldd:
|
bgoldd:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_bgoldd
|
container_name: btcpayserver_bgoldd
|
||||||
image: kamigawabul/docker-bitcoingold:0.15.2
|
image: kamigawabul/docker-bitcoingold:0.15.2
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "bgold_datadir:/data"
|
- "bgold_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "btg"
|
NBXPLORER_CHAINS: "btg"
|
||||||
NBXPLORER_BTGRPCURL: http://bgoldd:43782/
|
NBXPLORER_BTGRPCURL: http://bgoldd:43782/
|
||||||
NBXPLORER_BTGNODEENDPOINT: bgoldd:39388
|
NBXPLORER_BTGNODEENDPOINT: bgoldd:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "bgold_datadir:/root/.bitcoingold"
|
- "bgold_datadir:/root/.bitcoingold"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "btg"
|
BTCPAY_CHAINS: "btg"
|
||||||
BTCPAY_BTGEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_BTGEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
bgold_datadir:
|
bgold_datadir:
|
||||||
|
@ -50,7 +50,7 @@ services:
|
|||||||
links:
|
links:
|
||||||
- clightning_bitcoin
|
- clightning_bitcoin
|
||||||
expose:
|
expose:
|
||||||
- "9737"
|
- "9737"
|
||||||
|
|
||||||
clightning_bitcoin_rest:
|
clightning_bitcoin_rest:
|
||||||
image: saubyk/c-lightning-rest:0.3.0
|
image: saubyk/c-lightning-rest:0.3.0
|
||||||
|
@ -32,8 +32,8 @@ services:
|
|||||||
-Declair.bitcoind.zmqblock=tcp://bitcoind:28332
|
-Declair.bitcoind.zmqblock=tcp://bitcoind:28332
|
||||||
-Declair.bitcoind.zmqtx=tcp://bitcoind:28333
|
-Declair.bitcoind.zmqtx=tcp://bitcoind:28333
|
||||||
expose:
|
expose:
|
||||||
- "9735" # server port
|
- "9735" # server port
|
||||||
- "8080" # api port
|
- "8080" # api port
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoin_datadir:/etc/bitcoin"
|
- "bitcoin_datadir:/etc/bitcoin"
|
||||||
- "eclair_bitcoin_datadir:/data"
|
- "eclair_bitcoin_datadir:/data"
|
||||||
|
@ -2,34 +2,34 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
bitcoind:
|
bitcoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_bitcoind
|
container_name: btcpayserver_bitcoind
|
||||||
image: btcpayserver/bitcoin:0.20.1
|
image: btcpayserver/bitcoin:0.20.1
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||||
BITCOIN_WALLETDIR: "/walletdata"
|
BITCOIN_WALLETDIR: "/walletdata"
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
rpcbind=0.0.0.0:43782
|
rpcbind=0.0.0.0:43782
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoin_datadir:/data"
|
- "bitcoin_datadir:/data"
|
||||||
- "bitcoin_wallet_datadir:/walletdata"
|
- "bitcoin_wallet_datadir:/walletdata"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "btc"
|
NBXPLORER_CHAINS: "btc"
|
||||||
NBXPLORER_BTCRPCURL: http://bitcoind:43782/
|
NBXPLORER_BTCRPCURL: http://bitcoind:43782/
|
||||||
NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
|
NBXPLORER_BTCNODEENDPOINT: bitcoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoin_datadir:/root/.bitcoin"
|
- "bitcoin_datadir:/root/.bitcoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "btc"
|
BTCPAY_CHAINS: "btc"
|
||||||
BTCPAY_BTCEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_BTCEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
bitcoin_datadir:
|
bitcoin_datadir:
|
||||||
bitcoin_wallet_datadir:
|
bitcoin_wallet_datadir:
|
@ -2,34 +2,34 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
bitcoinplusd:
|
bitcoinplusd:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_bitcoinplusd
|
container_name: btcpayserver_bitcoinplusd
|
||||||
image: chekaz/docker-bitcoinplus:2.7.0
|
image: chekaz/docker-bitcoinplus:2.7.0
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoinplus_datadir:/data"
|
- "bitcoinplus_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "xbc"
|
NBXPLORER_CHAINS: "xbc"
|
||||||
NBXPLORER_XBCRPCURL: http://bitcoinplusd:43782/
|
NBXPLORER_XBCRPCURL: http://bitcoinplusd:43782/
|
||||||
NBXPLORER_XBCNODEENDPOINT: bitcoinplusd:39388
|
NBXPLORER_XBCNODEENDPOINT: bitcoinplusd:39388
|
||||||
NBXPLORER_XBCRPCUSER: "NBXPLORER_XBCRPCUSER"
|
NBXPLORER_XBCRPCUSER: "NBXPLORER_XBCRPCUSER"
|
||||||
NBXPLORER_XBCRPCPASSWORD: "NBXPLORER_XBCRPCPASS"
|
NBXPLORER_XBCRPCPASSWORD: "NBXPLORER_XBCRPCPASS"
|
||||||
links:
|
links:
|
||||||
- bitcoinplusd
|
- bitcoinplusd
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcoinplus_datadir:/root/.bitcoinplus"
|
- "bitcoinplus_datadir:/root/.bitcoinplus"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "xbc"
|
BTCPAY_CHAINS: "xbc"
|
||||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
bitcoinplus_datadir:
|
bitcoinplus_datadir:
|
||||||
|
@ -17,18 +17,18 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "bitcore_datadir:/data"
|
- "bitcore_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "btx"
|
NBXPLORER_CHAINS: "btx"
|
||||||
NBXPLORER_BTXRPCURL: http://bitcored:43782/
|
NBXPLORER_BTXRPCURL: http://bitcored:43782/
|
||||||
NBXPLORER_BTXNODEENDPOINT: bitcored:39388
|
NBXPLORER_BTXNODEENDPOINT: bitcored:39388
|
||||||
links:
|
links:
|
||||||
- bitcored
|
- bitcored
|
||||||
volumes:
|
volumes:
|
||||||
- "bitcore_datadir:/root/.bitcore"
|
- "bitcore_datadir:/root/.bitcore"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_BTXEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_BTXEXPLORERURL: http://nbxplorer:32838/
|
||||||
BTCPAY_CHAINS: "btx"
|
BTCPAY_CHAINS: "btx"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
bitcore_datadir:
|
bitcore_datadir:
|
||||||
|
@ -2,7 +2,7 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
ports:
|
ports:
|
||||||
- "80:49392"
|
- "80:49392"
|
||||||
|
|
||||||
exclusive:
|
exclusive:
|
||||||
|
@ -22,9 +22,9 @@ services:
|
|||||||
links:
|
links:
|
||||||
- postgres
|
- postgres
|
||||||
volumes:
|
volumes:
|
||||||
- "btcpay_datadir:/datadir"
|
- "btcpay_datadir:/datadir"
|
||||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||||
- "$<BTCPAY_HOST_SSHAUTHORIZEDKEYS>?:${BTCPAY_SSHAUTHORIZEDKEYS}"
|
- "$<BTCPAY_HOST_SSHAUTHORIZEDKEYS>?:${BTCPAY_SSHAUTHORIZEDKEYS}"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
btcpay_datadir:
|
btcpay_datadir:
|
||||||
|
@ -2,30 +2,30 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
dashd:
|
dashd:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_dashd
|
container_name: btcpayserver_dashd
|
||||||
image: btcpayserver/dash:0.14.0.1
|
image: btcpayserver/dash:0.14.0.1
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=9999
|
port=9999
|
||||||
rpcport=9998
|
rpcport=9998
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "9998"
|
- "9998"
|
||||||
- "9999"
|
- "9999"
|
||||||
volumes:
|
volumes:
|
||||||
- "dash_datadir:/data"
|
- "dash_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "dash"
|
NBXPLORER_CHAINS: "dash"
|
||||||
NBXPLORER_DASHRPCURL: http://dashd:9998/
|
NBXPLORER_DASHRPCURL: http://dashd:9998/
|
||||||
NBXPLORER_DASHNODEENDPOINT: dashd:9999
|
NBXPLORER_DASHNODEENDPOINT: dashd:9999
|
||||||
volumes:
|
volumes:
|
||||||
- "dash_datadir:/root/.dashcore"
|
- "dash_datadir:/root/.dashcore"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "dash"
|
BTCPAY_CHAINS: "dash"
|
||||||
BTCPAY_DASHEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_DASHEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
dash_datadir:
|
dash_datadir:
|
||||||
|
@ -2,40 +2,40 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
dogecoind:
|
dogecoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_dogecoind
|
container_name: btcpayserver_dogecoind
|
||||||
image: rockstardev/dogecoin:1.10.0
|
image: rockstardev/dogecoin:1.10.0
|
||||||
environment:
|
environment:
|
||||||
DOGECOIN_EXTRA_ARGS: |
|
DOGECOIN_EXTRA_ARGS: |
|
||||||
rpcuser=ceiwHEbqWI83
|
rpcuser=ceiwHEbqWI83
|
||||||
rpcpassword=DwubwWsoo3
|
rpcpassword=DwubwWsoo3
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
server=1
|
server=1
|
||||||
rpcport=22555
|
rpcport=22555
|
||||||
port=22556
|
port=22556
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
# Reducing memory usage of dogecoind. Don't try running this container without at least 2 GB of memory
|
# 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/
|
# https://www.reddit.com/r/dogecoin/comments/5wynqe/reducing_memory_usage_of_dogecoind/
|
||||||
dbcache=50
|
dbcache=50
|
||||||
ports:
|
ports:
|
||||||
- "22555:22555"
|
- "22555:22555"
|
||||||
expose:
|
expose:
|
||||||
- "22555" # RPC
|
- "22555" # RPC
|
||||||
- "22556" # P2P
|
- "22556" # P2P
|
||||||
volumes:
|
volumes:
|
||||||
- "dogecoin_datadir:/data"
|
- "dogecoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "doge"
|
NBXPLORER_CHAINS: "doge"
|
||||||
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
|
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
|
||||||
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
|
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
|
||||||
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
|
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
|
||||||
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
|
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
|
||||||
volumes:
|
volumes:
|
||||||
- "dogecoin_datadir:/root/.dogecoin"
|
- "dogecoin_datadir:/root/.dogecoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "doge"
|
BTCPAY_CHAINS: "doge"
|
||||||
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
dogecoin_datadir:
|
dogecoin_datadir:
|
||||||
|
@ -2,30 +2,30 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
feathercoind:
|
feathercoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_feathercoind
|
container_name: btcpayserver_feathercoind
|
||||||
image: chekaz/docker-feathercoin:0.16.3
|
image: chekaz/docker-feathercoin:0.16.3
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "feathercoin_datadir:/data"
|
- "feathercoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "ftc"
|
NBXPLORER_CHAINS: "ftc"
|
||||||
NBXPLORER_FTCRPCURL: http://feathercoind:43782/
|
NBXPLORER_FTCRPCURL: http://feathercoind:43782/
|
||||||
NBXPLORER_FTCNODEENDPOINT: feathercoind:39388
|
NBXPLORER_FTCNODEENDPOINT: feathercoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "feathercoin_datadir:/root/.feathercoin"
|
- "feathercoin_datadir:/root/.feathercoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "ftc"
|
BTCPAY_CHAINS: "ftc"
|
||||||
BTCPAY_FTCEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_FTCEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
feathercoin_datadir:
|
feathercoin_datadir:
|
||||||
|
@ -61,12 +61,12 @@ services:
|
|||||||
NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||||
SPARK_OPT: --no-tls --port 9739 -C /data/.cookie
|
SPARK_OPT: --no-tls --port 9739 -C /data/.cookie
|
||||||
volumes:
|
volumes:
|
||||||
- "clightning_groestlcoin_datadir:/etc/lightning"
|
- "clightning_groestlcoin_datadir:/etc/lightning"
|
||||||
- "clightning_groestlcoin_spark:/data"
|
- "clightning_groestlcoin_spark:/data"
|
||||||
links:
|
links:
|
||||||
- clightning_groestlcoin
|
- clightning_groestlcoin
|
||||||
expose:
|
expose:
|
||||||
- "9739"
|
- "9739"
|
||||||
volumes:
|
volumes:
|
||||||
clightning_groestlcoin_datadir:
|
clightning_groestlcoin_datadir:
|
||||||
clightning_groestlcoin_charge:
|
clightning_groestlcoin_charge:
|
||||||
|
@ -32,8 +32,8 @@ services:
|
|||||||
-Declair.bitcoind.zmqblock=tcp://groestlcoind:21441
|
-Declair.bitcoind.zmqblock=tcp://groestlcoind:21441
|
||||||
-Declair.bitcoind.zmqtx=tcp://groestlcoind:21441
|
-Declair.bitcoind.zmqtx=tcp://groestlcoind:21441
|
||||||
expose:
|
expose:
|
||||||
- "9735" # server port
|
- "9735" # server port
|
||||||
- "8080" # api port
|
- "8080" # api port
|
||||||
volumes:
|
volumes:
|
||||||
- "groestlcoin_datadir:/etc/groestlcoin"
|
- "groestlcoin_datadir:/etc/groestlcoin"
|
||||||
- "eclair_groestlcoin_datadir:/data"
|
- "eclair_groestlcoin_datadir:/data"
|
||||||
|
@ -2,30 +2,30 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
groestlcoind:
|
groestlcoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_groestlcoind
|
container_name: btcpayserver_groestlcoind
|
||||||
image: groestlcoin/docker-groestlcoin:2.20.1
|
image: groestlcoin/docker-groestlcoin:2.20.1
|
||||||
environment:
|
environment:
|
||||||
GROESTLCOIN_EXTRA_ARGS: |
|
GROESTLCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "groestlcoin_datadir:/data"
|
- "groestlcoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "grs"
|
NBXPLORER_CHAINS: "grs"
|
||||||
NBXPLORER_GRSRPCURL: http://groestlcoind:43782/
|
NBXPLORER_GRSRPCURL: http://groestlcoind:43782/
|
||||||
NBXPLORER_GRSNODEENDPOINT: groestlcoind:39388
|
NBXPLORER_GRSNODEENDPOINT: groestlcoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "groestlcoin_datadir:/root/.groestlcoin"
|
- "groestlcoin_datadir:/root/.groestlcoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "grs"
|
BTCPAY_CHAINS: "grs"
|
||||||
BTCPAY_GRSEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_GRSEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
groestlcoin_datadir:
|
groestlcoin_datadir:
|
||||||
|
@ -2,37 +2,37 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
elementsd_liquid:
|
elementsd_liquid:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_elementsd_liquid
|
container_name: btcpayserver_elementsd_liquid
|
||||||
image: btcpayserver/elements:0.18.1.7
|
image: btcpayserver/elements:0.18.1.7
|
||||||
environment:
|
environment:
|
||||||
ELEMENTS_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
ELEMENTS_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||||
ELEMENTS_MAINNET_CHAIN: "liquidv1"
|
ELEMENTS_MAINNET_CHAIN: "liquidv1"
|
||||||
ELEMENTS_WALLETDIR: "/walletdata"
|
ELEMENTS_WALLETDIR: "/walletdata"
|
||||||
ELEMENTS_EXTRA_ARGS: |
|
ELEMENTS_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
rpcbind=0.0.0.0:43782
|
rpcbind=0.0.0.0:43782
|
||||||
rpcauth=liquid:c8bf1a8961d97f224cb21224aaa8235d$$402f4a8907683d057b8c58a42940b6e54d1638322a42986ae28ebb844e603ae6
|
rpcauth=liquid:c8bf1a8961d97f224cb21224aaa8235d$$402f4a8907683d057b8c58a42940b6e54d1638322a42986ae28ebb844e603ae6
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
validatepegin=0
|
validatepegin=0
|
||||||
prune=5000
|
prune=5000
|
||||||
fallbackfee=0.000001
|
fallbackfee=0.000001
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "elements_datadir:/data"
|
- "elements_datadir:/data"
|
||||||
- "elements_wallet_datadir:/walletdata"
|
- "elements_wallet_datadir:/walletdata"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "lbtc"
|
NBXPLORER_CHAINS: "lbtc"
|
||||||
NBXPLORER_LBTCRPCURL: http://elementsd_liquid:43782/
|
NBXPLORER_LBTCRPCURL: http://elementsd_liquid:43782/
|
||||||
NBXPLORER_LBTCNODEENDPOINT: elementsd_liquid:39388
|
NBXPLORER_LBTCNODEENDPOINT: elementsd_liquid:39388
|
||||||
NBXPLORER_LBTCRPCUSER: "liquid"
|
NBXPLORER_LBTCRPCUSER: "liquid"
|
||||||
NBXPLORER_LBTCRPCPASSWORD: "liquid"
|
NBXPLORER_LBTCRPCPASSWORD: "liquid"
|
||||||
volumes:
|
volumes:
|
||||||
- "elements_datadir:/root/.elements"
|
- "elements_datadir:/root/.elements"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "lbtc"
|
BTCPAY_CHAINS: "lbtc"
|
||||||
|
@ -17,16 +17,16 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "litecoin_datadir:/data"
|
- "litecoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "ltc"
|
NBXPLORER_CHAINS: "ltc"
|
||||||
NBXPLORER_LTCRPCURL: http://litecoind:43782/
|
NBXPLORER_LTCRPCURL: http://litecoind:43782/
|
||||||
NBXPLORER_LTCNODEENDPOINT: litecoind:39388
|
NBXPLORER_LTCNODEENDPOINT: litecoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "litecoin_datadir:/root/.litecoin"
|
- "litecoin_datadir:/root/.litecoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_LTCEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_LTCEXPLORERURL: http://nbxplorer:32838/
|
||||||
BTCPAY_CHAINS: "ltc"
|
BTCPAY_CHAINS: "ltc"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
litecoin_datadir:
|
litecoin_datadir:
|
||||||
|
@ -17,16 +17,16 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- "monacoin_datadir:/data"
|
- "monacoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "mona"
|
NBXPLORER_CHAINS: "mona"
|
||||||
NBXPLORER_MONARPCURL: http://monacoind:43782/
|
NBXPLORER_MONARPCURL: http://monacoind:43782/
|
||||||
NBXPLORER_MONANODEENDPOINT: monacoind:39388
|
NBXPLORER_MONANODEENDPOINT: monacoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "monacoin_datadir:/root/.monacoin"
|
- "monacoin_datadir:/root/.monacoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_MONAEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_MONAEXPLORERURL: http://nbxplorer:32838/
|
||||||
BTCPAY_CHAINS: "mona"
|
BTCPAY_CHAINS: "mona"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
monacoin_datadir:
|
monacoin_datadir:
|
||||||
|
@ -16,4 +16,4 @@ services:
|
|||||||
- "nbxplorer_datadir:/datadir"
|
- "nbxplorer_datadir:/datadir"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
nbxplorer_datadir:
|
nbxplorer_datadir:
|
||||||
|
@ -28,10 +28,10 @@ services:
|
|||||||
- btcpayserver
|
- btcpayserver
|
||||||
- nginx
|
- nginx
|
||||||
volumes:
|
volumes:
|
||||||
nginx_conf:
|
nginx_conf:
|
||||||
nginx_vhost:
|
nginx_vhost:
|
||||||
nginx_html:
|
nginx_html:
|
||||||
nginx_certs:
|
nginx_certs:
|
||||||
|
|
||||||
exclusive:
|
exclusive:
|
||||||
- proxy
|
- proxy
|
||||||
|
@ -23,4 +23,4 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
BTCPAY_EXTERNALSERVICES: "Quickbooks Online Connector:btcqbo;"
|
BTCPAY_EXTERNALSERVICES: "Quickbooks Online Connector:btcqbo;"
|
||||||
volumes:
|
volumes:
|
||||||
redis_datadir:
|
redis_datadir:
|
||||||
|
@ -26,10 +26,10 @@ services:
|
|||||||
- postgres
|
- postgres
|
||||||
- nbxplorer
|
- nbxplorer
|
||||||
volumes:
|
volumes:
|
||||||
- "btctransmuter_datadir:/app/data"
|
- "btctransmuter_datadir:/app/data"
|
||||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_EXTERNALSERVICES: "BTC Transmuter:btctransmuter;"
|
BTCPAY_EXTERNALSERVICES: "BTC Transmuter:btctransmuter;"
|
||||||
volumes:
|
volumes:
|
||||||
btctransmuter_datadir:
|
btctransmuter_datadir:
|
||||||
|
@ -36,4 +36,3 @@ services:
|
|||||||
- "nbxplorer_datadir:/root/.nbxplorer"
|
- "nbxplorer_datadir:/root/.nbxplorer"
|
||||||
volumes:
|
volumes:
|
||||||
electrum_ps_datadir:
|
electrum_ps_datadir:
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ services:
|
|||||||
stop_signal: SIGKILL
|
stop_signal: SIGKILL
|
||||||
environment:
|
environment:
|
||||||
BASE_PATH: "/thub"
|
BASE_PATH: "/thub"
|
||||||
NO_VERSION_CHECK : "true"
|
NO_VERSION_CHECK: "true"
|
||||||
COOKIE_PATH: "/data/.cookie"
|
COOKIE_PATH: "/data/.cookie"
|
||||||
SSO_SERVER_URL: "lnd_bitcoin:10009"
|
SSO_SERVER_URL: "lnd_bitcoin:10009"
|
||||||
SSO_MACAROON_PATH: "/etc/lnd"
|
SSO_MACAROON_PATH: "/etc/lnd"
|
||||||
|
@ -56,9 +56,9 @@ services:
|
|||||||
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
# Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
|
||||||
rpcauth=btcrpc:a6a5d29a3f44f02e4cd8cabb5b10a234$$ab6152915515f6a9cca806d2ab5f0e2794c346ba74f812c61e48241d523778b8
|
rpcauth=btcrpc:a6a5d29a3f44f02e4cd8cabb5b10a234$$ab6152915515f6a9cca806d2ab5f0e2794c346ba74f812c61e48241d523778b8
|
||||||
volumes:
|
volumes:
|
||||||
- "tor_datadir:/home/tor/.tor"
|
- "tor_datadir:/home/tor/.tor"
|
||||||
links:
|
links:
|
||||||
- tor
|
- tor
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
volumes:
|
volumes:
|
||||||
@ -77,8 +77,8 @@ services:
|
|||||||
TOR_EXTRA_ARGS: |
|
TOR_EXTRA_ARGS: |
|
||||||
CookieAuthentication 1
|
CookieAuthentication 1
|
||||||
expose:
|
expose:
|
||||||
- "9050" # SOCKS
|
- "9050" # SOCKS
|
||||||
- "9051" # Tor Control
|
- "9051" # Tor Control
|
||||||
volumes:
|
volumes:
|
||||||
- "tor_datadir:/home/tor/.tor"
|
- "tor_datadir:/home/tor/.tor"
|
||||||
- "tor_torrcdir:/usr/local/etc/tor"
|
- "tor_torrcdir:/usr/local/etc/tor"
|
||||||
@ -167,6 +167,6 @@ services:
|
|||||||
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
- "tor_servicesdir:/var/lib/tor/hidden_services"
|
||||||
- "tor_torrcdir:/usr/local/etc/tor/"
|
- "tor_torrcdir:/usr/local/etc/tor/"
|
||||||
volumes:
|
volumes:
|
||||||
tor_datadir:
|
tor_datadir:
|
||||||
tor_torrcdir:
|
tor_torrcdir:
|
||||||
tor_servicesdir:
|
tor_servicesdir:
|
||||||
|
@ -32,8 +32,8 @@ services:
|
|||||||
- "mariadb_datadir:/var/lib/mysql"
|
- "mariadb_datadir:/var/lib/mysql"
|
||||||
|
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_EXTERNALSERVICES: "WooCommerce:${BTCPAY_PROTOCOL:-https}://${WOOCOMMERCE_HOST};"
|
BTCPAY_EXTERNALSERVICES: "WooCommerce:${BTCPAY_PROTOCOL:-https}://${WOOCOMMERCE_HOST};"
|
||||||
volumes:
|
volumes:
|
||||||
woocommerce_html:
|
woocommerce_html:
|
||||||
mariadb_datadir:
|
mariadb_datadir:
|
@ -3,5 +3,5 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
bitcoind:
|
bitcoind:
|
||||||
ports:
|
ports:
|
||||||
- "8333:39388"
|
- "8333:39388"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
version: "3"
|
version: "3"
|
||||||
# must not use opt-save-storage
|
# must not use opt-save-storage
|
||||||
|
|
||||||
services:
|
services:
|
||||||
bitcoind:
|
bitcoind:
|
||||||
|
@ -3,9 +3,9 @@ version: "3"
|
|||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: postgres:9.6.5
|
image: postgres:9.6.5
|
||||||
volumes:
|
volumes:
|
||||||
- "postgres_datadir:/var/lib/postgresql/data"
|
- "postgres_datadir:/var/lib/postgresql/data"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres_datadir:
|
postgres_datadir:
|
||||||
|
@ -2,34 +2,34 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
trezarcoind:
|
trezarcoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_trezarcoind
|
container_name: btcpayserver_trezarcoind
|
||||||
image: chekaz/docker-trezarcoin:0.13.0
|
image: chekaz/docker-trezarcoin:0.13.0
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "trezarcoin_datadir:/data"
|
- "trezarcoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "tzc"
|
NBXPLORER_CHAINS: "tzc"
|
||||||
NBXPLORER_TZCRPCURL: http://trezarcoind:43782/
|
NBXPLORER_TZCRPCURL: http://trezarcoind:43782/
|
||||||
NBXPLORER_TZCNODEENDPOINT: trezarcoind:39388
|
NBXPLORER_TZCNODEENDPOINT: trezarcoind:39388
|
||||||
NBXPLORER_TZCRPCUSER: "NBXPLORER_TZCRPCUSER"
|
NBXPLORER_TZCRPCUSER: "NBXPLORER_TZCRPCUSER"
|
||||||
NBXPLORER_TZCRPCPASSWORD: "NBXPLORER_TZCRPCPASS"
|
NBXPLORER_TZCRPCPASSWORD: "NBXPLORER_TZCRPCPASS"
|
||||||
links:
|
links:
|
||||||
- trezarcoind
|
- trezarcoind
|
||||||
volumes:
|
volumes:
|
||||||
- "trezarcoin_datadir:/root/.trezarcoin"
|
- "trezarcoin_datadir:/root/.trezarcoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "tzc"
|
BTCPAY_CHAINS: "tzc"
|
||||||
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_TZCEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
trezarcoin_datadir:
|
trezarcoin_datadir:
|
||||||
|
@ -2,30 +2,30 @@ version: "3"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
viacoind:
|
viacoind:
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
container_name: btcpayserver_viacoind
|
container_name: btcpayserver_viacoind
|
||||||
image: romanornr/docker-viacoin:0.15.2
|
image: romanornr/docker-viacoin:0.15.2
|
||||||
environment:
|
environment:
|
||||||
BITCOIN_EXTRA_ARGS: |
|
BITCOIN_EXTRA_ARGS: |
|
||||||
rpcport=43782
|
rpcport=43782
|
||||||
${NBITCOIN_NETWORK:-regtest}=1
|
${NBITCOIN_NETWORK:-regtest}=1
|
||||||
port=39388
|
port=39388
|
||||||
whitelist=0.0.0.0/0
|
whitelist=0.0.0.0/0
|
||||||
expose:
|
expose:
|
||||||
- "43782"
|
- "43782"
|
||||||
- "39388"
|
- "39388"
|
||||||
volumes:
|
volumes:
|
||||||
- "viacoin_datadir:/data"
|
- "viacoin_datadir:/data"
|
||||||
nbxplorer:
|
nbxplorer:
|
||||||
environment:
|
environment:
|
||||||
NBXPLORER_CHAINS: "via"
|
NBXPLORER_CHAINS: "via"
|
||||||
NBXPLORER_VIARPCURL: http://viacoind:43782/
|
NBXPLORER_VIARPCURL: http://viacoind:43782/
|
||||||
NBXPLORER_VIANODEENDPOINT: viacoind:39388
|
NBXPLORER_VIANODEENDPOINT: viacoind:39388
|
||||||
volumes:
|
volumes:
|
||||||
- "viacoin_datadir:/root/.viacoin"
|
- "viacoin_datadir:/root/.viacoin"
|
||||||
btcpayserver:
|
btcpayserver:
|
||||||
environment:
|
environment:
|
||||||
BTCPAY_CHAINS: "via"
|
BTCPAY_CHAINS: "via"
|
||||||
BTCPAY_VIAEXPLORERURL: http://nbxplorer:32838/
|
BTCPAY_VIAEXPLORERURL: http://nbxplorer:32838/
|
||||||
volumes:
|
volumes:
|
||||||
viacoin_datadir:
|
viacoin_datadir:
|
||||||
|
Loading…
Reference in New Issue
Block a user