Stephane Barbarie | 95507c4 | 2017-09-19 10:41:04 -0400 | [diff] [blame] | 1 | version: '3' |
| 2 | |
| 3 | services: |
| 4 | logstash: |
David K. Bainbridge | 737b74f | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 5 | image: "${REGISTRY}${REPOSITORY}voltha-logstash:${TAG:-latest}" |
Stephane Barbarie | 95507c4 | 2017-09-19 10:41:04 -0400 | [diff] [blame] | 6 | environment: |
| 7 | - log.level=info |
| 8 | - xpack.monitoring.enabled=false |
| 9 | command: logstash -f /etc/logstash/conf.d/ |
| 10 | volumes: |
| 11 | - ./compose/elasticsearch/logstash/config:/etc/logstash/conf.d |
| 12 | ports: |
| 13 | - "5000:5000" |
| 14 | networks: |
| 15 | - kafka-net |
| 16 | |
| 17 | networks: |
| 18 | kafka-net: |
| 19 | external: |
| 20 | name: kafka_net |