Sign inSign up

dhanushn/mongobi

By dhanushn

Updated over 4 years ago

Mongo BI Connector V2.14.2 (Ubuntu 18.04)

Image
Integration & delivery
Databases & storage
0

1.8K

dhanushn/mongobi repository overview

In order to use this image, first create a log folder and mongosqld.conf. Log folder should be mounted to /logs and mongosqld.conf to /home/mongobi/mongosqld.conf

A sample of mongosqld.conf can be:

systemLog:
  path: '/logs/mongosqld.log'
  verbosity: 10
mongodb:
  net:
    uri: "mongodb://instance-1:27017,instance-2:27017/?replicaSet=MEDIUM"
#schema:
#  path: "✅{{YourSchemaPath}}✅" #If you have an schema please uncomment this line
net:
  bindIp: 0.0.0.0
  port: 3307

And an example using docker-compose:

version: "3"
services:
  # ... MORE SERVICES ...
  mongo-bi:
    image: juky/mongobi
    restart: always
    volumes:
      #- "✅{{YourSchemaPath}}✅:/home/mongobi/schema.drdl" #Uncomment if you have an schema file
      - "✅{{YourConfFolder}}✅/mongosqld.conf:/home/mongobi/mongosqld.conf"
      - "✅{{YourLogFolder}}✅:/logs"
    container_name: "mongo-bi"
    hostname: "mongo-bi"
    ports:
      - "3307:3307"

Tag summary

Content type

Image

Digest

Size

154.4 MB

Last updated

over 4 years ago

docker pull dhanushn/mongobi