Home

Awesome

DO NOT USE THIS WITH A REAL DATABASE

Intro

MongoDB-HoneyProxy was created in response to the 'MongoDB Apocalypse'

Pre-requisites:

Setup

git clone https://github.com/Plazmaz/MongoDB-HoneyProxy.git
cd MongoDB-HoneyProxy
npm install

Docker version

If you want to have a Docker version of that, you can run the following programs:

  1. Build a docker image:
docker build --tag="changeme" .
  1. Run a docker image:
docker run -d -p 27017:27017 --name="changeme" changeme

If you want to get inside of the container run this:

docker exec -it changeme bash