fix merge conflict
This commit is contained in:
@@ -4,13 +4,13 @@ services:
|
||||
bitcoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_bitcoind
|
||||
image: nicolasdorier/docker-bitcoin:0.17.0
|
||||
image: btcpayserver/bitcoin:0.17.0
|
||||
environment:
|
||||
BITCOIN_NETWORK: ${NBITCOIN_NETWORK:-regtest}
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
deprecatedrpc=signrawtransaction
|
||||
rpcport=43782
|
||||
port=39388
|
||||
disablewallet=1
|
||||
whitelist=0.0.0.0/0
|
||||
expose:
|
||||
- "43782"
|
||||
|
||||
@@ -4,7 +4,7 @@ services:
|
||||
|
||||
btcpayserver:
|
||||
restart: unless-stopped
|
||||
image: nicolasdorier/btcpayserver:1.0.3.8
|
||||
image: ${BTCPAY_IMAGE:-btcpayserver/btcpayserver:1.0.3.22}
|
||||
expose:
|
||||
- "49392"
|
||||
environment:
|
||||
|
||||
43
docker-compose-generator/docker-fragments/dogecoin.yml
Normal file
43
docker-compose-generator/docker-fragments/dogecoin.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
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"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "doge"
|
||||
NBXPLORER_DOGERPCURL: http://dogecoind:22555/
|
||||
NBXPLORER_DOGENODEENDPOINT: dogecoind:22556
|
||||
NBXPLORER_DOGERPCUSER: ceiwHEbqWI83
|
||||
NBXPLORER_DOGERPCPASSWORD: DwubwWsoo3
|
||||
links:
|
||||
- dogecoind
|
||||
volumes:
|
||||
- "dogecoin_datadir:/root/.dogecoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_CHAINS: "doge"
|
||||
BTCPAY_DOGEEXPLORERURL: http://nbxplorer:32838/
|
||||
volumes:
|
||||
dogecoin_datadir:
|
||||
34
docker-compose-generator/docker-fragments/monacoin.yml
Normal file
34
docker-compose-generator/docker-fragments/monacoin.yml
Normal file
@@ -0,0 +1,34 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
monacoind:
|
||||
restart: unless-stopped
|
||||
container_name: btcpayserver_monacoind
|
||||
image: wakiyamap/docker-monacoin: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:
|
||||
- "monacoin_datadir:/data"
|
||||
nbxplorer:
|
||||
environment:
|
||||
NBXPLORER_CHAINS: "mona"
|
||||
NBXPLORER_MONARPCURL: http://monacoind:43782/
|
||||
NBXPLORER_MONANODEENDPOINT: monacoind:39388
|
||||
links:
|
||||
- monacoind
|
||||
volumes:
|
||||
- "monacoin_datadir:/root/.monacoin"
|
||||
btcpayserver:
|
||||
environment:
|
||||
BTCPAY_MONAEXPLORERURL: http://nbxplorer:32838/
|
||||
BTCPAY_CHAINS: "mona"
|
||||
|
||||
volumes:
|
||||
monacoin_datadir:
|
||||
@@ -4,7 +4,7 @@ services:
|
||||
|
||||
nbxplorer:
|
||||
restart: unless-stopped
|
||||
image: nicolasdorier/nbxplorer:1.1.0.12
|
||||
image: nicolasdorier/nbxplorer:2.0.0.1
|
||||
expose:
|
||||
- "32838"
|
||||
environment:
|
||||
|
||||
@@ -18,7 +18,7 @@ services:
|
||||
|
||||
nginx-gen:
|
||||
restart: unless-stopped
|
||||
image: jwilder/docker-gen
|
||||
image: btcpayserver/docker-gen:0.7.4
|
||||
container_name: nginx-gen
|
||||
volumes:
|
||||
- "/var/run/docker.sock:/tmp/docker.sock:ro"
|
||||
@@ -33,7 +33,7 @@ services:
|
||||
|
||||
letsencrypt-nginx-proxy-companion:
|
||||
restart: unless-stopped
|
||||
image: jrcs/letsencrypt-nginx-proxy-companion
|
||||
image: btcpayserver/letsencrypt-nginx-proxy-companion:1.10.0
|
||||
container_name: letsencrypt-nginx-proxy-companion
|
||||
volumes:
|
||||
- "/var/run/docker.sock:/var/run/docker.sock:ro"
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
version: "3"
|
||||
# If your machine has less than 1GB of memory, use this
|
||||
|
||||
services:
|
||||
bitcoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
bgoldd:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
feathercoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
groestlcoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
litecoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
viacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
monacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: |
|
||||
dbcache=150
|
||||
maxmempool=100
|
||||
@@ -20,4 +20,10 @@ services:
|
||||
BITCOIN_EXTRA_ARGS: prune=50000
|
||||
viacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=50000
|
||||
BITCOIN_EXTRA_ARGS: prune=50000
|
||||
dogecoind:
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: prune=50000
|
||||
monacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=50000
|
||||
|
||||
@@ -20,4 +20,10 @@ services:
|
||||
BITCOIN_EXTRA_ARGS: prune=25000
|
||||
viacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=25000
|
||||
BITCOIN_EXTRA_ARGS: prune=25000
|
||||
dogecoind:
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: prune=25000
|
||||
monacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=25000
|
||||
|
||||
@@ -20,4 +20,10 @@ services:
|
||||
BITCOIN_EXTRA_ARGS: prune=5000
|
||||
viacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=5000
|
||||
BITCOIN_EXTRA_ARGS: prune=5000
|
||||
dogecoind:
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: prune=5000
|
||||
monacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=5000
|
||||
|
||||
@@ -20,4 +20,10 @@ services:
|
||||
BITCOIN_EXTRA_ARGS: prune=100000
|
||||
viacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=100000
|
||||
BITCOIN_EXTRA_ARGS: prune=100000
|
||||
dogecoind:
|
||||
environment:
|
||||
DOGECOIN_EXTRA_ARGS: prune=100000
|
||||
monacoind:
|
||||
environment:
|
||||
BITCOIN_EXTRA_ARGS: prune=100000
|
||||
|
||||
Reference in New Issue
Block a user