Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,42 @@ If my work helps you, please consider [![buying me a coffee](https://cdn-images-

> Note: Node.js version 4.x or above is required

## Docker ##

### With docker-compose ###

`docker-compose up -d` in folder

```yml
version: '3'
services:

admin_mongo:
container_name: admin_mongo
image: mrvautin/adminmongo
restart: always
environment:
- LOCALE=en
- MONITORING=true
- PASSWORD=SuperSecret
- PORT=1234
network_mode: host
volumes:
- <path to config>:/app/user/config # default path in docker-compose.yml `~/adminMongo`
```

### Without docker-compose ###

```bash
docker run -v <path to config>:/app/user/config -d \
--network='host' \
-e PASSWORD=SuperSecret \
-e LOCALE=en \
-e MONITORING=true \
-e PORT=1234 \
mrvautin/adminmongo
```

## Electron App

adminMongo can also be used as a cross platform Electron application. Due to the size of Electron it will need to be built manually.
Expand Down
15 changes: 15 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
version: '3'
services:

admin_mongo:
container_name: admin_mongo
image: mrvautin/adminmongo
restart: always
environment:
- LOCALE=en
- MONITORING=true
- PASSWORD=SuperSecret
- PORT=1234
network_mode: host
volumes:
- ~/adminMongo:/app/user/config