Merge pull request #26 from Permissionless-Software-Foundation/ct-unstable

fix(ipfs-coord): Updated to v6.4.0
This commit is contained in:
Chris Troutner
2021-08-27 15:43:16 -07:00
committed by GitHub
5 changed files with 13 additions and 13 deletions
+7 -7
View File
@@ -13,7 +13,7 @@
"bcryptjs": "^2.4.3",
"glob": "^7.1.6",
"ipfs": "0.55.4",
"ipfs-coord": "^6.3.0",
"ipfs-coord": "^6.4.0",
"jsonrpc-lite": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-bch-lib": "^1.3.0",
@@ -10028,9 +10028,9 @@
}
},
"node_modules/ipfs-coord": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/ipfs-coord/-/ipfs-coord-6.3.0.tgz",
"integrity": "sha512-bxvXq8eq+xsy0IKzEa7/iC+N4E3fDaTjxhw0KKYybE7iBUv/HS+iaMQNqL6K5i8IwUw19HwYY3oagQNz+G+Sxw==",
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/ipfs-coord/-/ipfs-coord-6.4.0.tgz",
"integrity": "sha512-rUejOfuQLUUDqs9Dhysl4iS258beBO5VryqWr/rpmJXvUD2G7D7lzEVYq7YizGTESQLYRr3pJO4cy+fC8VjyAA==",
"dependencies": {
"bch-encrypt-lib": "^2.0.0",
"orbit-db": "^0.26.1"
@@ -34360,9 +34360,9 @@
}
},
"ipfs-coord": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/ipfs-coord/-/ipfs-coord-6.3.0.tgz",
"integrity": "sha512-bxvXq8eq+xsy0IKzEa7/iC+N4E3fDaTjxhw0KKYybE7iBUv/HS+iaMQNqL6K5i8IwUw19HwYY3oagQNz+G+Sxw==",
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/ipfs-coord/-/ipfs-coord-6.4.0.tgz",
"integrity": "sha512-rUejOfuQLUUDqs9Dhysl4iS258beBO5VryqWr/rpmJXvUD2G7D7lzEVYq7YizGTESQLYRr3pJO4cy+fC8VjyAA==",
"requires": {
"bch-encrypt-lib": "^2.0.0",
"orbit-db": "^0.26.1"
+1 -1
View File
@@ -28,7 +28,7 @@
"bcryptjs": "^2.4.3",
"glob": "^7.1.6",
"ipfs": "0.55.4",
"ipfs-coord": "^6.3.0",
"ipfs-coord": "^6.4.0",
"jsonrpc-lite": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-bch-lib": "^1.3.0",
+2 -2
View File
@@ -52,7 +52,7 @@ VOLUME /home/safeuser/keys
EXPOSE 5001
# Start the application.
COPY start-production start-production
CMD ["./start-production"]
COPY start-production.sh start-production.sh
CMD ["./start-production.sh"]
#CMD ["npm", "start"]
+2 -2
View File
@@ -6,7 +6,7 @@ mongo-ipfs-service:
ports:
- '5555:27017' # <host port>:<container port>
volumes:
- ./database:/data/db
- ./data/database:/data/db
command: mongod --logpath=/dev/null # -- quiet
restart: always
@@ -21,6 +21,6 @@ ipfs-service:
volumes:
# - ./logs:/home/coinjoin/consolidating-coinjoin/logs
#- ./keys:/home/safeuser/keys
- ../.ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata
- ./data/.ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata
restart: always
@@ -13,7 +13,7 @@ export COORD_NAME=ipfs-service-provider-generic
#export ENABLE_CIRCUIT_RELAY=true
# Debug level. 0 = minimal info. 2 = max info.
export DEBUG_LEVEL=2
export DEBUG_LEVEL=1
# END: Optional configuration settings