This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 93c0f520 authored by Eduard Frankford's avatar Eduard Frankford
Browse files

Merge branch 'keycloak_theme' into 353-warning_from_logfile

parents 53a3229e 25d5f881
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
# This configuration is intended for development purpose, it's **your** responsibility to harden it for production
version: '3.8'
version: '3.5'
services:
gitsearch-elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.15.2
sharing-elasticsearch-updated:
image: docker.elastic.co/elasticsearch/elasticsearch:8.6.0
# volumes:
# - ~/volumes/jhipster/gitsearch/elasticsearch/:/usr/share/elasticsearch/data/
# If you want to expose these ports outside your dev PC,
# remove the "127.0.0.1:" prefix
ports:
- 127.0.0.1:9200:9200
- 127.0.0.1:9300:9300
- '9200:9200' # add this for your local testing setup
- '9300:9300' # add this for your local testing setup
environment:
- 'xpack.security.enabled=false'
- 'discovery.type=single-node'
- 'bootstrap.memory_lock=true'
- 'ES_JAVA_OPTS=-Xms512m -Xmx512m'
- node.name=es02
- cluster.name=sharing_elasticsearch2
- discovery.type=single-node
- xpack.security.enabled=false
volumes:
- '$ES_HOME/data2:/usr/share/elasticsearch/data2'
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
cap_add:
- IPC_LOCK
networks:
backend:
ipv4_address: 172.22.2.24
kibana:
depends_on:
- sharing-elasticsearch-updated
image: docker.elastic.co/kibana/kibana:8.6.0
volumes:
- kibanadata:/usr/share/kibana/data
ports:
- 5601:5601
environment:
- SERVERNAME=kibana
- ELASTICSEARCH_HOSTS=http://172.22.2.24:9200
healthcheck:
test: ['CMD-SHELL', "curl -s -I http://172.22.2.23:5601 | grep -q 'HTTP/1.1 302 Found'"]
interval: 10s
timeout: 10s
retries: 120
networks:
backend:
ipv4_address: 172.22.2.23
networks:
frontend:
name: sharing_frontend
driver: bridge
ipam:
driver: default
config:
- subnet: 172.22.1.0/24
backend:
name: sharing_backend
driver: bridge
internal: true
ipam:
driver: default
config:
- subnet: 172.22.2.0/24
volumes:
kibanadata:
driver: local
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment