Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[deployment] Add Elasticsearch to docker environment #145

Open
landerneRPi opened this issue May 1, 2021 · 0 comments
Open

[deployment] Add Elasticsearch to docker environment #145

landerneRPi opened this issue May 1, 2021 · 0 comments
Labels
enhancement New feature or request
Milestone

Comments

@landerneRPi
Copy link
Collaborator

Add Elasticsearch (for logs management) in EFK (Elasticsearch, Fluent, Kibana) stack.

Example in docker/docker-compose.yaml:

  elasticsearch:
    image: elasticsearch:7.12.1
    ports:
      - '9200:9200'
      - '9300:9300'
    environment:
      - bootstrap.memory_lock=true
      - discovery.type=single-node
      - "ES_JAVA_OPTS=-Xms2g -Xmx2g"
      - cluster.routing.allocation.disk.threshold_enabled=false
    ulimits:
      memlock:
          soft: -1
          hard: -1
    user: 'elasticsearch'

@landerneRPi landerneRPi added the enhancement New feature or request label May 1, 2021
@landerneRPi landerneRPi added this to the V2 milestone May 1, 2021
@yannis-mlgrn yannis-mlgrn modified the milestones: V2, V3 Feb 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants