mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-04 09:46:43 +02:00
add network and container names
This commit is contained in:
parent
d3681e3186
commit
3d0f764320
1 changed files with 9 additions and 0 deletions
|
@ -2,6 +2,7 @@ version: "3.7"
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
image: code.cozy.town/codeforleipzig/stadtratmonitor/develop:latest
|
image: code.cozy.town/codeforleipzig/stadtratmonitor/develop:latest
|
||||||
|
container_name: stadtratmonitor-web
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app/
|
- .:/app/
|
||||||
ports:
|
ports:
|
||||||
|
@ -10,7 +11,10 @@ services:
|
||||||
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
- ELASTICSEARCH_URL=${ELASTICSEARCH_URL:-http://elasticsearch:9200}
|
||||||
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
- APPLICATION_HOST=${APPLICATION_HOST:-localhost}
|
||||||
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
- SHARED_IMPORT_SECRET=$SHARED_IMPORT_SECRET
|
||||||
|
networks:
|
||||||
|
- stadtratmonitor
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
|
container_name: stadtratmonitor-elasticsearch
|
||||||
user: elasticsearch
|
user: elasticsearch
|
||||||
build: ./docker/elasticsearch
|
build: ./docker/elasticsearch
|
||||||
environment:
|
environment:
|
||||||
|
@ -23,10 +27,15 @@ services:
|
||||||
- ${ESDATA:-esdata}:/usr/share/elasticsearch/data //read, write and execute
|
- ${ESDATA:-esdata}:/usr/share/elasticsearch/data //read, write and execute
|
||||||
- ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
|
- ./docker/elasticsearch/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
|
||||||
command: sh -c "/usr/share/elasticsearch/bin/elasticsearch"
|
command: sh -c "/usr/share/elasticsearch/bin/elasticsearch"
|
||||||
|
networks:
|
||||||
|
- stadtratmonitor
|
||||||
elastichq:
|
elastichq:
|
||||||
|
container_name: stadtratmonitor-elastichq
|
||||||
image: elastichq/elasticsearch-hq
|
image: elastichq/elasticsearch-hq
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:5000:5000"
|
- "127.0.0.1:5000:5000"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
esdata:
|
esdata:
|
||||||
|
networks:
|
||||||
|
stadtratmonitor:
|
Loading…
Add table
Reference in a new issue