MongoDB

1 minute read
On this page

MongoDB 3.6.8 runs on the default port 27017 and doesn’t require any credentials.

Other Versions

If you need to install a different version or use a custom configuration, please see this script. This script supports MongoDB 3.0.0 and above.

For example if you want to install 6.0.5, set that version and port number as environment variables in your project or add this in the Setup Commands:

export MONGODB_VERSION=6.0.5
export MONGODB_PORT=27017

Next, add these commands to shutdown the default MongoDB instance and install the new version.

sudo mongod --dbpath /var/lib/mongodb --shutdown

\curl -sSL https://raw.githubusercontent.com/codeship/scripts/master/packages/mongodb.sh | bash -s