Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 618 Bytes

DEPLOYMENT.md

File metadata and controls

24 lines (23 loc) · 618 Bytes

Deploying pattern extractor component

  1. Save .env.example file as pattern.env and configure the variables appropriately
  2. Build docker images
    docker-compose build
  3. Create docker containers
    docker-compose up --no-start
  4. Start Mongo DB
    docker-compose start mongo
  5. Login into mongo container and configure authentication (execute command from mongodb/scripts/mongo.js in the mongo shell)
docker exec -it pattern-mongo mongo
  1. Start Pattern Extractor service
    docker-compose start patternExtractor