Updating docker scripts

This commit is contained in:
Chris Troutner
2020-03-30 18:56:49 -07:00
parent 631c5511ee
commit 94e4fbe9d4
4 changed files with 13 additions and 10 deletions
+2
View File
@@ -7,6 +7,8 @@ bch-api-main:
- redis-main
ports:
- "12400:3000"
volume:
- ../../logs:/home/safeuser/bch-api/logs
restart: always
redis-main:
+2
View File
@@ -0,0 +1,2 @@
# Logs
This directory holds the logs for the mainnet docker container.
+6 -6
View File
@@ -1,19 +1,19 @@
#!/bin/bash
# test
# Full node
export RPC_BASEURL=http://142.93.13.2:8332/
export RPC_BASEURL=http://172.17.0.1:8332/
export RPC_USERNAME=bitcoin
export RPC_PASSWORD=password
export NETWORK=mainnet
# SLPDB
#export SLPDB_URL=https://slpdb.bitcoin.com/
#export SLPDB_URL=http://172.17.0.1:12300/
export SLPDB_URL=https://slpdb2.bchtest.net/
export SLPDB_PASS=owmvgnsksoapwhrnvu
export SLPDB_URL=http://172.17.0.1:12300/
export SLPDB_PASS=somelongpassword
# Blockbook Indexer
export BLOCKBOOK_URL=https://157.230.214.175:9131/
export BLOCKBOOK_URL=https://172.17.0.1:9131/
# Allow node.js to make network calls to https using self-signed certificate.
export NODE_TLS_REJECT_UNAUTHORIZED=0
+3 -4
View File
@@ -1,17 +1,16 @@
#!/bin/bash
# Full node
export RPC_BASEURL=http://206.189.188.192:18332/
export RPC_BASEURL=http://172.17.0.1:18332/
export RPC_USERNAME=bitcoin
export RPC_PASSWORD=password
export NETWORK=testnet
# SLPDB
export SLPDB_URL=https://tslpdb.bitcoin.com/
#export SLPDB_URL=http://172.17.0.1:12300/
export SLPDB_URL=http://172.17.0.1:13300/
# Blockbook Indexer
export BLOCKBOOK_URL=https://157.230.178.198:19131/
export BLOCKBOOK_URL=https://172.17.0.1:19131/
# Allow node.js to make network calls to https using self-signed certificate.
export NODE_TLS_REJECT_UNAUTHORIZED=0