mongo: bring mem limit in-line with others

This commit is contained in:
Girish Ramakrishnan
2020-12-04 11:03:26 -08:00
parent 1363e02603
commit 258d81d7e9
+1 -1
View File
@@ -183,7 +183,7 @@ const SERVICES = {
mongodb: {
status: containerStatus.bind(null, 'mongodb', 'CLOUDRON_MONGODB_TOKEN'),
restart: restartContainer.bind(null, 'mongodb'),
defaultMemoryLimit: (1 + Math.round(os.totalmem()/(1024*1024*1024)/4)) * 200 * 1024 * 1024
defaultMemoryLimit: (1 + Math.round(os.totalmem()/(1024*1024*1024)/4)) * 256 * 1024 * 1024
},
mysql: {
status: containerStatus.bind(null, 'mysql', 'CLOUDRON_MYSQL_TOKEN'),