Jaeger is now disabled by default.

Elasticsearch persist data on disk.
Elasticsearch is only available on localhost.
This commit is contained in:
Ivaylo Novakov 2021-04-30 12:15:48 +02:00
parent d16218f8eb
commit 58317c0fd7
No known key found for this signature in database
GPG Key ID: 06B9354AB08BE9C6
1 changed files with 9 additions and 3 deletions

View File

@ -4,8 +4,8 @@ services:
sia: sia:
environment: environment:
- SIA_MODULES=gctwr - SIA_MODULES=gctwr
- JAEGER_DISABLED="${JAEGER_DISABLED:-false}" # Enable/Disable tracing - JAEGER_DISABLED=${JAEGER_DISABLED:-true} # Enable/Disable tracing
- JAEGER_SERVICE_NAME="${PORTAL_NAME:-Skyd}" # change to e.g. eu-ger-1 - JAEGER_SERVICE_NAME=${PORTAL_NAME:-Skyd} # change to e.g. eu-ger-1
# Configuration # Configuration
# See https://github.com/jaegertracing/jaeger-client-go#environment-variables # See https://github.com/jaegertracing/jaeger-client-go#environment-variables
# for all options. # for all options.
@ -78,8 +78,14 @@ services:
restart: on-failure restart: on-failure
environment: environment:
- discovery.type=single-node - discovery.type=single-node
# This prevents elasticsearch from using swap.
# See https://www.elastic.co/guide/en/elasticsearch/reference/master/setup-configuration-memory.html#setup-configuration-memory
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms4g -Xmx4g"
volumes:
- ./docker/data/elasticsearch:/usr/share/elasticsearch/data
ports: ports:
- "9200:9200/tcp" - "127.0.0.1:9200:9200/tcp"
networks: networks:
shared: shared:
ipv4_address: 10.10.10.93 ipv4_address: 10.10.10.93