stadtratmonitor/docker-compose.yml

39 lines
1,017 B
YAML
Raw Normal View History

version: "3.7"
services:
web:
2023-05-04 15:40:55 +02:00
image: ---WIP---
user: srm
volumes:
2023-05-04 15:40:55 +02:00
- .:/app/
ports:
- "3000:3000"
links:
- elasticsearch
environment:
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
2023-04-29 22:58:51 +02:00
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
2023-05-04 13:57:27 +02:00
command: ls -lah /home/srm/
elasticsearch:
user: elasticsearch
build: ./docker/elasticsearch
environment:
- discovery.type=single-node
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- "9215:9200"
volumes:
- ${ESDATA:-esdata}:/usr/share/elasticsearch/data //read, write and execute
- ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
command: sh -c "/usr/share/elasticsearch/bin/elasticsearch"
elastichq:
image: elastichq/elasticsearch-hq
ports:
- "5000:5000"
links:
- elasticsearch
volumes:
esdata: