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

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

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.