Skip to content

miaguicam7/webflux-crud-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spring-webflux

Docker mongodb-alpine

Install

As a prerequisite, you need Docker to be installed.

To download this image from the public docker hub:

    $ docker pull mvertes/alpine-mongo

To re-build this image from the dockerfile:

    $ docker build -t mvertes/alpine-mongo .

Usage

To run mongod:

    $ docker run -d --name mongo -p 27017:27017 mvertes/alpine-mongo

You can also specify the database repository where to store the data with the volume -v option:

$ docker run -d --name mongo -p 27017:27017 \
      -v /somewhere/onmyhost/mydatabase:/data/db \
      mvertes/alpine-mongo

To run a shell session:

$ docker exec -ti mongo sh

To use the mongo shell client:

    $ docker exec -ti mongo mongo

Create user

use admin()

db.createUser( { user: "maaguilar", pwd: "maaguilar", roles:["root"] })

Releases

No releases published

Packages

No packages published

Languages