Last active
September 5, 2016 16:00
-
-
Save otkrsk/3fb49fbbff078b7b823569e4b547b18c to your computer and use it in GitHub Desktop.
Snippet to set up DO Droplet with MongoDB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #cloud-config | |
| apt_sources: | |
| # Enable MongoDB repository | |
| - source: deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.0 multiverse | |
| keyid: 7F0CEB10 | |
| filename: mongodb.list | |
| apt_update: true | |
| packages: | |
| - mongodb-org |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment