Update to Meteor 1.9-beta.4, Node.js 12.13.1 and MongoDB 4.2.1.

Remove MongoDB option --smallfiles that is not supported in MongoDB 4.2.1.
Add MongoDB option --quiet to docker-compose.yml.
Update snap fibers to 4.0.1.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2019-12-05 10:00:07 +02:00
parent 1b12d3f04f
commit 467a3be850
19 changed files with 73 additions and 557 deletions

View file

@ -52,14 +52,14 @@ if [ -z "$MONGO_URL" ]; then
## OLD: Logging to file.
#mongod --dbpath $SNAP_COMMON --logpath $SNAP_COMMON/mongodb.log --logappend --journal $BIND_OPTIONS --smallfiles
## NEW: Logging to syslog, that usually has already log rotation.
mongod --dbpath $SNAP_COMMON --syslog --journal $BIND_OPTIONS --smallfiles --quiet
mongod --dbpath $SNAP_COMMON --syslog --journal $BIND_OPTIONS --quiet
else
## OLD: Logging to file.
#mongod --dbpath $SNAP_COMMON --logpath $SNAP_COMMON/mongodb.log --logappend --journal $MONGO_URL --smallfiles
## NEW: Logging to syslog, that usually has already log rotation.
mongod --dbpath $SNAP_COMMON --syslog --journal $MONGO_URL --smallfiles --quiet
mongod --dbpath $SNAP_COMMON --syslog --journal $MONGO_URL --quiet
fi