Code Monkey home page Code Monkey logo

mongo-docker-demo's Introduction

mongo-docker-demo

A simple demo on how to access mongodb from docker

This sample application shows how to use package a simple MongoDB application with Docker. It highlights also how to do integration tests.

Running MongoDB and the application:

Compile the application and generate the docker images

cd sample
mvn clean install -Papp-docker-image

Start all the services

docker-compose --file docker/docker-compose.yml up -d

Run the application

docker-compose --file docker/docker-compose.yml run mongo-docker-demo mongo

Stop all the services

docker-compose --file docker/docker-compose.yml down

Running integration tests:

Generates the images

mvn clean install -Papp-docker-image

Starts mongo service

docker-compose --file src/test/resources/docker-compose.yml up -d mongo 

Run the application

docker-compose --file src/test/resources/docker-compose.yml \
               run mongo-docker-demo \
               java -jar /maven/jar/mongo-docker-demo-1.0-SNAPSHOT-jar-with-dependencies.jar mongo 

Run the integration tests

docker-compose --file src/test/resources/docker-compose.yml \
               run mongo-docker-demo-tests mvn -f /maven/code/pom.xml \
               -Dmaven.repo.local=/m2/repository -Pintegration-test verify 

If you want to remote debug tests, run instead

docker run -v ~/.m2/repository:/m2/repository \
       -p 5005:5005 --link mongo:mongo \
       --net resources_default \
       mongo-docker-demo-tests mvn -f /maven/code/pom.xml \
       -Dmaven.repo.local=/m2/repository -Pintegration-test \
       verify -Dmaven.failsafe.debug

Stop all the services

docker-compose --file src/test/resources/docker-compose.yml down

mongo-docker-demo's People

Contributors

fabianenardon avatar

Watchers

James Cloos avatar Roan Brasil Monteiro 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.