Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/bitliner/docker-nodejs-bower-grunt-mongodbclients

Docker image for: nodejs, grunt, bower, and mongodb-clients (mongoexport, mongoimport, mongo, etc.)
https://github.com/bitliner/docker-nodejs-bower-grunt-mongodbclients

Last synced: about 20 hours ago
JSON representation

Docker image for: nodejs, grunt, bower, and mongodb-clients (mongoexport, mongoimport, mongo, etc.)

Awesome Lists containing this project

README

        

# docker-nodejs-bower-grunt-mongodbclients

Docker image for:

* nodejs
* grunt
* bower
* mongodb-clients (mongoexport, mongoimport, mongo, etc.)

[Docker Hub](https://hub.docker.com/r/bitliner/nodejs-bower-grunt-mongodbclients/)

# Usage example

Create a dockerfile Dockerfile as following

```
FROM bitliner/nodejs-bower-grunt-mongodbclients

### e.g. eventually use mongoimport
RUN mongoimport --host db --port 27017 -d db1 -c coll1 < /usrc/src/app/data/coll1.json

COPY . /usr/src/app
WORKDIR /usr/src/app

EXPOSE 9000

CMD ["grunt", "serve"]
```