6f2415563e1ee9e8158336ad0a5e7df54735c546
Don’t need to copy mongod.conf anymore since we can run mongod with the —auth option
MongoDB-Server
A ready-to-use mongodb server for use with Henry Pump datalogger products.
Installation
- Clone this repository.
- Open the file "setup_mongo_users.js"
- Edit the top of the file to set your usernames, passwords, and databases. For instance, the following would create an admin user "admin" with password "Adm1nP4ssw0rd" and two users on the "dummy" database, one with username "dummy1" and password "badpassword" and another with username "dummyB" and password "monkey"
var ADMIN_USER = {username: "admin", password: "Adm1nP4ssw0rd"};
var USERLIST = [
{username: "dummy1", password: "badpassword", db: "dummy"},
{username: "dummyB", password: "monkey", db: "dummy"},
];
- Make any changes necessary to mongod.conf
- Build the Dockerfile and tag it with whatever you want.
docker build . --tag "mongodb-server"
Description
Languages
Dockerfile
53.2%
JavaScript
46.8%