Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.)
- Host: GitHub
- URL: https://github.com/bitliner/docker-nodejs-bower-grunt-mongodbclients
- Owner: bitliner
- License: apache-2.0
- Created: 2015-10-06T18:27:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-12T08:30:36.000Z (over 9 years ago)
- Last Synced: 2024-04-09T21:32:15.814Z (10 months ago)
- Language: Shell
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.jsonCOPY . /usr/src/app
WORKDIR /usr/src/appEXPOSE 9000
CMD ["grunt", "serve"]
```