mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 23:53:15 +01:00
22 lines
628 B
YAML
22 lines
628 B
YAML
web:
|
|
build: .
|
|
volumes:
|
|
- .:/app
|
|
ports:
|
|
- "3000:3000"
|
|
links:
|
|
- elasticsearch
|
|
environment:
|
|
ELASTICSEARCH_URL: 'http://elasticsearch:9200'
|
|
elasticsearch:
|
|
image: elasticsearch:5.4.3
|
|
command:
|
|
- sh
|
|
- -c
|
|
- "./bin/elasticsearch-plugin install http://xbib.org/repository/org/xbib/elasticsearch/plugin/elasticsearch-analysis-decompound/5.4.3.0/elasticsearch-analysis-decompound-5.4.3.0-plugin.zip;
|
|
./bin/elasticsearch-plugin install https://github.com/royrusso/elasticsearch-HQ/zipball/master;
|
|
/docker-entrypoint.sh elasticsearch"
|
|
ports:
|
|
- "9200:9200"
|
|
volumes:
|
|
- .:/apps
|