http (cors) rest sharing for mongodb
50K+
Docker container for mongodb sharing via http rest using CORS and access control.
docker pull linuxenko/mongo-rest
docker run -p 3000:3000 \
-e ME_CONFIG_DBSTRING="mongodb://user:password@host:port/database" -d linuxenko/mongo-rest
docker run -p 3000:3000 -e ME_CONFIG_APIKEY=qwerty \
-e ME_CONFIG_DBSTRING="mongodb://user:password@host:port/database" -d linuxenko/mongo-rest
ME_CONFIG_DBSTRING = (default localhost or --linked mongo without authentication, db - test)
ME_CONFIG_READONLY = (default read-write)
ME_CONFIG_APIKEY = (default without key)
ME_CONFIG_ROOTURL = (default /api/)
Example environment options set :
ME_CONFIG_DBSTRING = mongodb://user:password@host:port/database
ME_CONFIG_READONLY = y
ME_CONFIG_APIKEY = apirequestkey
ME_CONFIG_ROOTURL = /api/
limit , offset , sort options (via query-to-mongo)
| Route | Method | Notes |
|---|---|---|
| /:collection | GET | Search the collection (uses query-to-mongo) |
| /:collection | POST | Create a single document |
| /:collection | PUT | Method Not Allowed |
| /:collection | PATCH | Method Not Allowed |
| /:collection | DELETE | Remove all documents |
| /:collection/:id | GET | Retrieve a single document |
| /:collection/:id | POST | Method Not Allowed |
| /:collection/:id | PUT | Create or update a document |
| /:collection/:id | PATCH | Update fields in a document (uses jsonpatch-to-mongodb) |
| /:collection/:id | DELETE | Remove a single document |
Retreiving records :
$.getJSON('http://server:3000/api/test/?apiKey=qwerty')
Creating records :
$.ajax({
type: 'POST', // server not ME_CONFIG_READONLY
url: 'http://server:3000/api/test/?apiKey=qwerty', // if ME_CONFIG_APIKEY enabled
contentType: 'application/json',
data: JSON.stringify({hello : "world"})});
This is free and unencumbered software released into the public domain.
Content type
Image
Digest
sha256:f25877c46…
Size
243.9 MB
Last updated
almost 11 years ago
docker pull linuxenko/mongo-rest