Yamllint'ed all files and made them compliant. (#379)

Co-authored-by: max <max@RedRapier.local>
This commit is contained in:
Maxime Rousseau 2020-10-06 01:17:43 -04:00 committed by GitHub
parent f48fb291c1
commit ea9abe6301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
47 changed files with 368 additions and 369 deletions

View File

@ -36,7 +36,7 @@ services:
- "lnd_bitcoingold_datadir:/etc/lnd_bitcoingold" - "lnd_bitcoingold_datadir:/etc/lnd_bitcoingold"
links: links:
- lnd_bitcoingold - lnd_bitcoingold
nginx: nginx:
links: links:
- "lnd_bitcoingold" - "lnd_bitcoingold"
@ -52,4 +52,4 @@ volumes:
lnd_bitcoingold_datadir: lnd_bitcoingold_datadir:
required: required:
- "opt-add-zmq" - "opt-add-zmq"

View File

@ -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:

View File

@ -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
@ -87,8 +87,8 @@ services:
- "clightning_bitcoin_rtl_datadir:/data" - "clightning_bitcoin_rtl_datadir:/data"
- "clightning_bitcoin_rest_datadir:/etc/clightning_bitcoin_rest" - "clightning_bitcoin_rest_datadir:/etc/clightning_bitcoin_rest"
expose: expose:
- "3000" - "3000"
btcpayserver: btcpayserver:
environment: environment:
BTCPAY_BTCLIGHTNING: "type=clightning;server=unix://etc/clightning_bitcoin/lightning-rpc" BTCPAY_BTCLIGHTNING: "type=clightning;server=unix://etc/clightning_bitcoin/lightning-rpc"

View File

@ -32,14 +32,14 @@ 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"
links: links:
- bitcoind - bitcoind
bitcoin_rtl: bitcoin_rtl:
image: shahanafarooqui/rtl:0.8.2 image: shahanafarooqui/rtl:0.8.2
restart: unless-stopped restart: unless-stopped

View File

@ -82,7 +82,7 @@ services:
# We need to use rpcauth because we also need cookieauth. rpcpassword disabled cookie file auth. # 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. # Be careful if you copy the line below from the docker-compose.yml! A dollar sign is escaped.
rpcauth=lnd:d031f7567c5b02ba95524170e51c77f4$$827ce5412f653d6613c2f480e521eb437c866b999bdeb2ee4f9c41d3b00dff1c rpcauth=lnd:d031f7567c5b02ba95524170e51c77f4$$827ce5412f653d6613c2f480e521eb437c866b999bdeb2ee4f9c41d3b00dff1c
nginx: nginx:
links: links:
- "lnd_bitcoin" - "lnd_bitcoin"
@ -99,4 +99,4 @@ volumes:
lnd_bitcoin_rtl_datadir: lnd_bitcoin_rtl_datadir:
required: required:
- "opt-add-zmq" - "opt-add-zmq"

View File

@ -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:

View File

@ -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:

View File

@ -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:

View File

@ -9,8 +9,8 @@ services:
VIRTUAL_PORT: 49392 VIRTUAL_PORT: 49392
VIRTUAL_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS} VIRTUAL_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS}
VIRTUAL_HOST_NAME: "btcpay" VIRTUAL_HOST_NAME: "btcpay"
SSL_POLICY: Mozilla-Modern SSL_POLICY: Mozilla-Modern
# Let's encrypt settings # Let's encrypt settings
LETSENCRYPT_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS} LETSENCRYPT_HOST: ${BTCPAY_HOST},${BTCPAY_ADDITIONAL_HOSTS}
LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:-<no value>} LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL:-<no value>}

View File

@ -2,8 +2,8 @@ version: "3"
services: services:
btcpayserver: btcpayserver:
ports: ports:
- "80:49392" - "80:49392"
exclusive: exclusive:
- proxy - proxy

View File

@ -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:
@ -34,4 +34,4 @@ required:
- "nbxplorer" - "nbxplorer"
- "btcpayserver" - "btcpayserver"
recommended: recommended:
- "opt-add-tor" - "opt-add-tor"

View File

@ -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:

View File

@ -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:

View File

@ -3,4 +3,4 @@ version: "3"
services: services:
btcpayserver: btcpayserver:
environment: environment:
BTCPAY_CHAINS: "eth" BTCPAY_CHAINS: "eth"

View File

@ -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:

View File

@ -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:

View File

@ -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"
@ -51,4 +51,4 @@ volumes:
required: required:
- "opt-add-zmq" - "opt-add-zmq"
- "opt-txindex" - "opt-txindex"

View File

@ -61,4 +61,4 @@ volumes:
lnd_groestlcoin_datadir: lnd_groestlcoin_datadir:
required: required:
- "opt-add-zmq" - "opt-add-zmq"

View File

@ -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:

View File

@ -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"

View File

@ -31,4 +31,4 @@ services:
links: links:
- clightning_litecoin - clightning_litecoin
volumes: volumes:
clightning_litecoin_datadir: clightning_litecoin_datadir:

View File

@ -49,4 +49,4 @@ volumes:
lnd_litecoin_datadir: lnd_litecoin_datadir:
required: required:
- "opt-add-zmq" - "opt-add-zmq"

View File

@ -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:

View File

@ -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:

View File

@ -5,7 +5,7 @@ services:
nbxplorer: nbxplorer:
restart: unless-stopped restart: unless-stopped
image: nicolasdorier/nbxplorer:2.1.42 image: nicolasdorier/nbxplorer:2.1.42
expose: expose:
- "32838" - "32838"
environment: environment:
NBXPLORER_NETWORK: ${NBITCOIN_NETWORK:-regtest} NBXPLORER_NETWORK: ${NBITCOIN_NETWORK:-regtest}
@ -16,4 +16,4 @@ services:
- "nbxplorer_datadir:/datadir" - "nbxplorer_datadir:/datadir"
volumes: volumes:
nbxplorer_datadir: nbxplorer_datadir:

View File

@ -26,4 +26,4 @@ services:
nginx-gen: nginx-gen:
volumes: volumes:
- "nginx_certs:/etc/nginx/certs:ro" - "nginx_certs:/etc/nginx/certs:ro"

View File

@ -28,14 +28,14 @@ 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
required: required:
- "btcpayserver-nginx" - "btcpayserver-nginx"
recommended: recommended:
- "nginx-https" - "nginx-https"

View File

@ -11,7 +11,7 @@ services:
CALLBACK_URL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/btcqbo/qbologged CALLBACK_URL: ${BTCPAY_PROTOCOL:-https}://${BTCPAY_HOST}/btcqbo/qbologged
expose: expose:
- "8001" - "8001"
links: links:
- redis - redis
redis: redis:
image: redis:5.0.2-alpine image: redis:5.0.2-alpine
@ -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:

View File

@ -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:

View File

@ -36,4 +36,3 @@ services:
- "nbxplorer_datadir:/root/.nbxplorer" - "nbxplorer_datadir:/root/.nbxplorer"
volumes: volumes:
electrum_ps_datadir: electrum_ps_datadir:

View File

@ -19,4 +19,4 @@ services:
- "./pihole/resolv.conf:/etc/resolv.conf:ro" - "./pihole/resolv.conf:/etc/resolv.conf:ro"
- "pihole_datadir:/etc/pihole" - "pihole_datadir:/etc/pihole"
volumes: volumes:
pihole_datadir: pihole_datadir:

View File

@ -32,4 +32,4 @@ volumes:
required: required:
- "opt-add-zmq" - "opt-add-zmq"
- "bitcoin" - "bitcoin"
- "opt-txindex" - "opt-txindex"

View File

@ -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"

View File

@ -14,7 +14,7 @@ services:
environment: environment:
TOR_RELAY_NICKNAME: ${TOR_RELAY_NICKNAME} TOR_RELAY_NICKNAME: ${TOR_RELAY_NICKNAME}
TOR_RELAY_EMAIL: ${TOR_RELAY_EMAIL} TOR_RELAY_EMAIL: ${TOR_RELAY_EMAIL}
tor-relay: tor-relay:
restart: unless-stopped restart: unless-stopped
image: btcpayserver/tor:0.4.2.7 image: btcpayserver/tor:0.4.2.7
@ -25,9 +25,9 @@ services:
volumes: volumes:
- "tor_relay_datadir:/home/tor/.tor" - "tor_relay_datadir:/home/tor/.tor"
- "tor_relay_torrcdir:/usr/local/etc/tor" - "tor_relay_torrcdir:/usr/local/etc/tor"
ports: ports:
- "9001:9001" - "9001:9001"
- "9030:9030" - "9030:9030"
volumes: volumes:
tor_relay_datadir: tor_relay_datadir:
tor_relay_torrcdir: tor_relay_torrcdir:

View File

@ -1,5 +1,5 @@
# This will expose BTCPayServer, Woocommerce, your lightning nodes as hidden services and accept onion peers for your full node. # 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. # 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. # 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 # All outbound traffic is not channeled through the TOR SOCKS proxy
version: "3" version: "3"
@ -15,7 +15,7 @@ services:
volumes: volumes:
- "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/"
btctransmuter: btctransmuter:
environment: environment:
HIDDENSERVICE_NAME: BTCTransmuter HIDDENSERVICE_NAME: BTCTransmuter
@ -25,7 +25,7 @@ services:
volumes: volumes:
- "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/"
configurator: configurator:
environment: environment:
HIDDENSERVICE_NAME: Configurator HIDDENSERVICE_NAME: Configurator
@ -33,7 +33,7 @@ services:
volumes: volumes:
- "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/"
woocommerce: woocommerce:
environment: environment:
HIDDENSERVICE_NAME: WooCommerce 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. # 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:

View File

@ -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:

View File

@ -3,5 +3,5 @@ version: "3"
services: services:
bitcoind: bitcoind:
ports: ports:
- "8333:39388" - "8333:39388"

View File

@ -35,4 +35,4 @@ services:
ELEMENTS_EXTRA_ARGS: | ELEMENTS_EXTRA_ARGS: |
dbcache=1024 dbcache=1024
exclusive: exclusive:
- memory - memory

View File

@ -31,4 +31,4 @@ services:
environment: environment:
BITCOIN_EXTRA_ARGS: prune=50000 BITCOIN_EXTRA_ARGS: prune=50000
exclusive: exclusive:
- pruning - pruning

View File

@ -31,4 +31,4 @@ services:
environment: environment:
BITCOIN_EXTRA_ARGS: prune=25000 BITCOIN_EXTRA_ARGS: prune=25000
exclusive: exclusive:
- pruning - pruning

View File

@ -31,4 +31,4 @@ services:
environment: environment:
BITCOIN_EXTRA_ARGS: prune=5000 BITCOIN_EXTRA_ARGS: prune=5000
exclusive: exclusive:
- pruning - pruning

View File

@ -31,4 +31,4 @@ services:
environment: environment:
BITCOIN_EXTRA_ARGS: prune=100000 BITCOIN_EXTRA_ARGS: prune=100000
exclusive: exclusive:
- pruning - pruning

View File

@ -1,5 +1,5 @@
version: "3" version: "3"
# must not use opt-save-storage # must not use opt-save-storage
services: services:
bitcoind: bitcoind:
@ -31,4 +31,4 @@ services:
BITCOIN_EXTRA_ARGS: | BITCOIN_EXTRA_ARGS: |
txindex=1 txindex=1
incompatible: incompatible:
- pruning - pruning

View File

@ -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:

View File

@ -14,7 +14,7 @@ services:
- "./acme.json:/acme.json:ro" - "./acme.json:/acme.json:ro"
- "./servers.toml:/servers.toml" - "./servers.toml:/servers.toml"
- "./traefik_logs:/traefik_logs" - "./traefik_logs:/traefik_logs"
links: links:
- btcpayserver - btcpayserver
@ -24,4 +24,4 @@ volumes:
exclusive: exclusive:
- proxy - proxy
required: required:
- "traefik" - "traefik"

View File

@ -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:

View File

@ -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: