https://github.com/virtuald/nsq-docker
Automated docker builds for NSQ
https://github.com/virtuald/nsq-docker
Last synced: 10 months ago
JSON representation
Automated docker builds for NSQ
- Host: GitHub
- URL: https://github.com/virtuald/nsq-docker
- Owner: virtuald
- Created: 2014-07-27T04:52:48.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-06-02T20:04:21.000Z (about 10 years ago)
- Last Synced: 2025-03-28T00:05:15.001Z (about 1 year ago)
- Language: Shell
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
nsq-docker
==========
Provides automated builds for NSQ using binaries directly from github.
Usage
=====
Start up a single host NSQ cluster only accessible from the docker host:
docker run -d --name nsqlookupd virtuald/nsq:nsqlookupd-0.3.8 -broadcast-address '$HOSTNAME'
docker run -d --name nsqd --link nsqlookupd:nsqlookupd virtuald/nsq:nsqd-0.3.8 -broadcast-address '$HOSTNAME'
docker run -d --name nsqadmin --link nsqlookupd:nsqlookupd virtuald/nsq:nsqadmin-0.3.8
Note that in this configuration, this cluster cannot be talked to from the
outside world. If you want to do that, then you need to use -p to publsh all
the ports, and set the broadcast address to the docker host address.