fix(production): Updating docker container

This commit is contained in:
Chris Troutner
2023-10-28 11:24:40 -07:00
parent c05f022995
commit e4c2ee44c1
4 changed files with 8 additions and 34 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ export default {
debugLevel: process.env.DEBUG_LEVEL ? parseInt(process.env.DEBUG_LEVEL) : 2,
// Settings for production, using external go-ipfs node.
isProduction: process.env.SVC_ENV === 'production' ? true : false,
isProduction: process.env.SVC_ENV === 'prod' ? true : false,
ipfsHost: process.env.IPFS_HOST ? process.env.IPFS_HOST : 'localhost',
ipfsApiPort: process.env.IPFS_API_PORT
? parseInt(process.env.IPFS_API_PORT)