Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/ryanhs/mongodb-bi-connector-docker

mongodb-bi-connector dockerized
https://github.com/ryanhs/mongodb-bi-connector-docker

Last synced: 3 months ago
JSON representation

mongodb-bi-connector dockerized

Lists

README

        

# Mongodb BI Connector

this docker image for mongodb-bi-connector.

## Security / Auth

This bi-connector assume that your mongodb server can connect without any authentication (trusted network).
"*Authentication in MongoDB is fairly complex*". Thats the reason to make this bi-connector is simple as possible for now.

## docker-compose example

```
version: "3"
services:
mongodb:
image: mongo:bionic

mongodb-bi-connector:
image: ryanhs/mongodb-bi-connector:latest
environment:
MONGODB_HOST: mongodb
MONGODB_PORT: 27017

```