fix(production): Tweeking production Docker container slightly

This commit is contained in:
Chris Troutner
2021-08-27 15:41:33 -07:00
parent 1618289078
commit fb215b11b7
3 changed files with 5 additions and 5 deletions
+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