add dash docker

This commit is contained in:
Andrew Camilleri
2018-09-13 14:11:12 +02:00
parent 8933ab9030
commit 6f1361793c
2 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
version: "3"
services:
dashd:
restart: unless-stopped
container_name: btcpayserver_dashd
image: uphold/docker-dash-core:0.12.2.3
expose:
- "43782"
- "39388"
volumes:
- "dash_datadir:/home/dash/.dashcore"
command:
-${NBITCOIN_NETWORK:-regtest}=1
-rpcport=43782
-port=39388
-whitelist=0.0.0.0/0
nbxplorer:
environment:
NBXPLORER_CHAINS: "DASH"
NBXPLORER_DASHRPCURL: http://dashd:43782/
NBXPLORER_DASHNODEENDPOINT: dashd:39388
links:
- dashd
volumes:
- "dash_datadir:/root/.dash"
btcpayserver:
environment:
BTCPAY_CHAINS: "DASH"
BTCPAY_DASHEXPLORERURL: http://nbxplorer:32838/
volumes:
dash_datadir:

View File

@@ -65,6 +65,11 @@ namespace DockerGenerator
{
Crypto = "via",
CryptoFragment = "viacoin"
},
new CryptoDefinition()
{
Crypto = "DASH",
CryptoFragment = "dash"
}
};
}