Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 1.59 KB

SETUP-DOCKER-COMPOSE.md

File metadata and controls

45 lines (28 loc) · 1.59 KB

Set up local DnA Platform instance with docker-compose

Docker Compose will help to start the application locally on your computer and support to develop and debugging as a docker container in the local machine.

Prerequisites for this are:

  • Git
  • Docker
  • Docker Compose

as a first step you need to clone the Git Repo to your local computer, this is done by opening terminal/command prompt (or some visual git client you may have) and executing:

git clone https://github.com/Daimler/DnA.git

Once when cloning is finalized you will have a copy of the entire repository locally (replace <<Cloned Folder>> with actual location on your computer) and now you can simply start the application

cd <<Clonned Folder>>/deployment/

docker-compose -f docker-compose-local-basic.yml up

Wait for a few seconds and then open the website by going to http://localhost:8080 in your browser. If you made any changes on source files add --build --force-recreate args to docker-compose command. If you facing any issue with docker-compose, please refer FAQ

To stop the application

docker-compose -f docker-compose-local-basic.yml down

DnA Platform can be configured quite a lot, have a look at possible config parameters:

or follow simple instructions on how to use simple and free Open ID Connect identity provider

FAQ