mirror of https://github.com/docker/docs.git
24 lines
406 B
YAML
24 lines
406 B
YAML
nsqlookupd:
|
|
image: nsqio/nsq
|
|
ports:
|
|
- "4160:4160"
|
|
- "4161:4161"
|
|
command: /nsqlookupd
|
|
|
|
nsqd:
|
|
image: nsqio/nsq
|
|
ports:
|
|
- "4150"
|
|
- "4151"
|
|
links:
|
|
- nsqlookupd:nsqlookupd
|
|
command: /nsqd --lookupd-tcp-address=nsqlookupd:4160
|
|
|
|
nsqadmin:
|
|
image: nsqio/nsq
|
|
ports:
|
|
- "4171:4171"
|
|
links:
|
|
- nsqlookupd:nsqlookupd
|
|
command: /nsqadmin --lookupd-http-address=nsqlookupd:4161
|