25 lines
604 B
YAML
25 lines
604 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
nsqd:
|
|
image: nsqio/nsq:v1.2.0
|
|
labels:
|
|
ru.grachevko.dhu: 'nsqd'
|
|
command: /nsqd -log-level debug
|
|
# command: /nsqd
|
|
ports:
|
|
- 4150:4150
|
|
- 4151:4151
|
|
|
|
nsqadmin:
|
|
image: nsqio/nsq:v1.2.0
|
|
labels:
|
|
ru.grachevko.dhu: 'nsqadmin'
|
|
command: /nsqadmin --nsqd-http-address=nsqd:4151 --http-address=0.0.0.0:4171
|
|
ports:
|
|
- 4171:4171
|
|
|
|
tail:
|
|
image: nsqio/nsq:v1.2.0
|
|
command: nsq_tail -channel nsq_tail -topic local -nsqd-tcp-address nsqd:4150
|