Skip to content

Instantly share code, notes, and snippets.

@KrishnB
Last active June 24, 2019 08:47
Show Gist options
  • Save KrishnB/85f58fd4ba0d453bd73e5068b185761b to your computer and use it in GitHub Desktop.
Save KrishnB/85f58fd4ba0d453bd73e5068b185761b to your computer and use it in GitHub Desktop.
Setting up optimus dashboard

Step 1

Install Docker https://docs.docker.com/install/

Step 2

Pull Optimus dashboard docker image

    docker pull testvagrant/optimusdashboard

Step 3

Create a configuration file eg: env.list

Step 4

Update the contents of env.list

    DE_ENV=production
    DB_SERVER_URL=mongohost:27017
    DB_NAME=optimus?authSource=admin

Update the above properties with your respective db details or use as is if your db is on local

Step 5

Spin up the dashboard

    docker run -d --name optimus-dashboard --link mongo -p 9901:9900 --env-file env.list optimus:1.13

Your optimus dashboard will be up and running on http://localhost:9901

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment