LogoLogo
  • E.D.D.I Documentation
  • Getting started
  • Your first bot
    • Understanding your first bot
  • Bot Manager GUI
  • Creating your first Chatbots
    • Create a "Hello World" bot
    • Create a bot that reacts to user inputs
  • Import/Export a Chatbot
  • Managed Bots
  • Deployement management of Chatbots
  • Extensions
  • Behavior Rules
  • HttpCalls
  • Langchain
  • Output Configuration
  • Conversations
  • Passing context information
  • Output Templating
  • Semantic Parser
  • Git support
  • Docker
  • Setting Up EDDI on AWS with MongoDB Atlas
  • RedHat Openshift
  • Metrics
  • FAQs
Powered by GitBook
On this page

Was this helpful?

Export as PDF

Docker

PreviousGit supportNextSetting Up EDDI on AWS with MongoDB Atlas

Last updated 2 years ago

Was this helpful?

Setup

  1. Option: Use docker-compose (recommended)

    1. 1. Checkout the docker-compose file from github:

      1. 2. Run Docker Command:docker-compose up

  2. Option: Launch docker containers manually

Start a MongoDB instance using the MongoDB docker image:

docker run --name mongodb -e MONGODB_DBNAME=eddi -d mongo

Start EDDI:

docker run --name eddi --link mongodb:mongodb -p 7070:7070 -d labsai/eddi
https://github.com/labsai/EDDI/blob/master/docker-compose.yml