# spring-boot-mongo-docker **Repository Path**: dbak/spring-boot-mongo-docker ## Basic Information - **Project Name**: spring-boot-mongo-docker - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-12-17 - **Last Updated**: 2022-05-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Build Project Using Maven Maven is java based build tool to generate executable packages(jar, ear,war) for java based projects. ```bash mvn clean package ``` ## Create Docker Image Docker is a continerization tool.Using docker we can deploy our applications as containers using docker images. Containers contains application code and also the softwares, config files whatever is required for our application to run. Create docker image using Dockerfile ```docker docker build -t dockerhandson/spring-boot-mongo . ``` ## Deploy Application Using Docker Compose ```docker-compose docker-compose up -d ``` ## List Docker Containers ```docker docker ps -a ``` ## License [Mithun Technologies](http://mithuntechnologies.co.in)