Compare commits

..
1 Commits
Author SHA1 Message Date
Chris Troutner e91dd7f834 feat(production): Adjusting production settings 2021-07-17 20:16:19 +02:00
2 changed files with 11 additions and 10 deletions
+4 -4
View File
@@ -4,7 +4,7 @@ bch-wallet-mongodb:
image: mongo
container_name: mongo-bch-service
ports:
- '5555:27017' # <host port>:<container port>
- '5704:27017' # <host port>:<container port>
volumes:
- ./database:/data/db
command: mongod --logpath=/dev/null # -- quiet
@@ -18,9 +18,9 @@ bch-wallet-service:
- bch-wallet-mongodb
ports:
# <host port>:<container port>
- '5001:5001' # REST API
- '5668:5668' # IPFS TCP Port
- '5669:5669' # IPFS WS Port
- '5700:5700' # REST API
- '5701:5701' # IPFS TCP Port
- '5702:5702' # IPFS WS Port
volumes:
- ./ipfsdata:/home/safeuser/ipfsdata
- ./orbitdb:/home/safeuser/orbitdb
+7 -6
View File
@@ -3,15 +3,16 @@
# Customize these environment variables for your own installation.
export AUTHSERVER=https://auth.fullstack.cash
export APISERVER=https://api.fullstack.cash/v5/
export FULLSTACKLOGIN=demo@demo.com
export FULLSTACKPASS=demo
export FULLSTACKLOGIN=bch-ipfs@bchtest.net
export FULLSTACKPASS=bchoveripfs
# Ports
export PORT=5001 # REST API
export IPFS_TCP_PORT=5668 # IPSF TCP Port
export IPFS_WS_PORT=5669 # IPFS WS Port
export PORT=5700 # REST API
export IPFS_TCP_PORT=5701 # IPSF TCP Port
export IPFS_WS_PORT=5701 # IPFS WS Port
#export ENABLE_CIRCUIT_RELAY=1
export ENABLE_CIRCUIT_RELAY=1
export SVC_ENV=production
npm start