Merge branch 'Kukks-featu/doge-cli'

This commit is contained in:
nicolas.dorier
2018-11-27 23:15:04 +09:00
3 changed files with 9 additions and 0 deletions

View File

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

1
dogecoin-cli.ps1 Executable file
View File

@@ -0,0 +1 @@
docker exec -ti btcpayserver_dogecoind dogecoin-cli -datadir="/data" $args

3
dogecoin-cli.sh Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
docker exec -ti btcpayserver_dogecoind dogecoin-cli -datadir="/data" "$@"