https://github.com/bitliner/node-zmq
Docker image for nodejs and zeromq
https://github.com/bitliner/node-zmq
Last synced: over 1 year ago
JSON representation
Docker image for nodejs and zeromq
- Host: GitHub
- URL: https://github.com/bitliner/node-zmq
- Owner: bitliner
- Created: 2015-02-02T09:22:59.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-03T17:02:06.000Z (over 10 years ago)
- Last Synced: 2025-01-23T14:55:41.651Z (over 1 year ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# node-zmq
Docker image for nodejs and zeromq.
* Based on google/nodejs.
* On top of it it installs zeromq.
onbuild image adds simply the project folder to the /app folder inside the container.
# Usage
Write a Dockerfile like this:
```
FROM bitliner/node-zmq:onbuild
CMD []
ENTRYPOINT ["/nodejs/bin/npm", "start"]
```
Then build and run the related container.