stadtratmonitor/docker-compose.yml.separated

29 lines
555 B
Text
Raw Normal View History

2023-04-07 14:28:10 +02:00
version: "3.7"
volumes:
elasticsearch:
services:
web:
build: .
volumes:
- .:/app
ports:
- "3000:3000"
# links:
# - elasticsearch
environment:
ELASTICSEARCH_URL: 'http://leipzig-giesst.de:9200'
elasticsearch:
build: ./docker/elasticsearch
environment:
- discovery.type=single-node
ports:
- "9200:9200"
volumes:
- elasticsearch:/usr/share/elasticsearch/data
elastichq:
image: elastichq/elasticsearch-hq
ports:
- "5000:5000"
# links:
# - elasticsearch