29 lines
654 B
YAML
29 lines
654 B
YAML
# Defines if ports should be exported.
|
|
# This is useful for testing locally with a full elastic stack setup.
|
|
# All services can be reached through localhost like localhost:5601 for Kibana
|
|
# This is not used for CI as otherwise ports conflicts could happen.
|
|
version: '2'
|
|
services:
|
|
kibana:
|
|
ports:
|
|
- "5601:5601"
|
|
environment:
|
|
- ELASTICSEARCH_URL=http://elasticsearch:9200/
|
|
|
|
elasticsearch:
|
|
ports:
|
|
- "9200:9200"
|
|
|
|
logstash:
|
|
ports:
|
|
- "5044:5044"
|
|
- "5055:5055"
|
|
|
|
# Makes sure containers keep running for manual testing
|
|
beat:
|
|
build: .
|
|
depends_on:
|
|
- elasticsearch
|
|
- kibana
|
|
- logstash
|