Code Monkey home page Code Monkey logo

docker-mongo-auth's Introduction

docker-mongo-auth

This will create a Dockerized MongoDB with

  • authentication enabled
  • root user & password
  • admin user & password
  • default database
  • default database user (dbUser) & password

This is built from the official MongoDB image. When the variables

  • MONGO_INITDB_ROOT_USERNAME
  • MONGO_INITDB_ROOT_PASSWORD

are used, authorization and root user/password are created automatically. The additional users and database are created from a custom startup_script that is added to docker-entrypoint-initdb.d and run after the default docker-entrypoint.

This build utilizes a .env file. ** Please change username and passwords to your own values. **

Build

From the command line:

docker-compose build 
docker-compose up

If you are deploying this multiple times locally for development purposes, you'll need to clear volumes and images between deployments.

Access container and MongoDB

Exec into container:

docker exec -it <container name> bash

If using Git for Windows, use this:

winpty docker exec -it <container name> bash

Access MongoDB:

mongo -u <username> -p <password> --authenticationDatabase <authentication database name> 

For example:

mongo -u dbUser -p dbUser_pw --authenticationDatabase useful_database

docker-mongo-auth's People

Contributors

kmjaimes avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.