A web-based MongoDB graphical user interface.
Read-only demo: https://mongo-gui.herokuapp.com/
There are two ways to install mongo-gui.
npm install -g mongo-guimongo-gui to run the applicationgit clone https://github.com/arunbandari/mongo-gui or download the zip file from here.cd mongo-guinpm installnpm start or node server.js commandNote: Node.js must be installed on your machine to run this application
Docker compose
version: '3'
services:
mongo-gui:
container_name: "mongo-gui"
image: ugleiton/mongo-gui
restart: always
ports:
- "4321:4321"
environment:
- MONGO_URL=mongodb://localhost:27017
The commands mongo-gui and npm start or node server.js start the application with the following configuaration:
URL (-u): mongodb://localhost:27017
PORT (-p): 4321
and the application will be accesible at http://localhost:4321
To connect to any other mongodb instance, pass mongo connection string as an argument, eg:
Installed via npm: mongo-gui -u mongodb+srv://<username>:<password>@host/<dbnames>?retryWrites=true&w=majority'
Installed via github: (npm start --/node server.js) -u mongodb+srv://<username>:<password>@host/<dbnames>?retryWrites=true&w=majority'
Available options:

Content type
Image
Digest
Size
358 MB
Last updated
about 6 years ago
docker pull ugleiton/mongo-gui