Updating testnet docker-compose file to use localized redis

This commit is contained in:
Chris Troutner
2020-03-08 03:58:51 +00:00
parent 4b7a14203e
commit 4c4294001f
4 changed files with 15 additions and 13 deletions
+1 -1
View File
@@ -14,4 +14,4 @@ redis-main:
container_name: redis-main
restart: always
ports:
- "6379:6379"
- "172.17.0.1:6379:6379"
+6 -4
View File
@@ -1,21 +1,23 @@
#!/bin/bash
# Full node
export RPC_BASEURL=http://172.17.0.1:8332/
export RPC_BASEURL=http://142.93.13.2: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=http://172.17.0.1:12300/
export SLPDB_URL=https://slpdb2.bchtest.net/
export SLPDB_PASS=owmvgnsksoapwhrnvu
# Blockbook Indexer
export BLOCKBOOK_URL=https://172.17.0.1:9131/
export BLOCKBOOK_URL=https://157.230.214.175:9131/
# Allow node.js to make network calls to https using self-signed certificate.
export NODE_TLS_REJECT_UNAUTHORIZED=0
export JWT_AUTH_SERVER=http://localhost:5001/
export JWT_AUTH_SERVER=http://172.17.0.1:5001/
# Redis DB
export REDIS_PORT=6379