Hey, I'm new to this forum stuff to apologies.
I'm trying to connect containers to work on a side project which involves elasticsearch. Every other container is working and provides me the API key but when trying to implement Elasticsearch my server begins to experience issues.
SSH is down and I assume it is not allocating enough RAM, or I do not have enough RAM Installed. I had previous issues when running the docker-compose node on the elasticsearch github.
I attempted to configure a docker-compose with the following:
version: '8.4'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.4.0
container_name: elasticsearch
environment:
- discovery.type=single-node
- network.host=0.0.0.0
- http.host=0.0.0.0
- xpack.security.enabled=false # Disable security for local development
ports:
- "9200:9200"
networks:
elasticsearch-net:
ipv4_address: 192.168.2.66
volumes:
- esdata:/usr/share/elasticsearch/data
networks:
elasticsearch-net:
driver: bridge
ipam:
config:
- subnet: 192.168.2.0/24
volumes:
esdata:
driver: local
I've had previous issues with the default github and unhealthy containers and Im more than confused. I have currently using 32 gbs of ram, Ryzen 9 5900XT, GTX 1080, with an SSD of 500 gbs.
Does anyone have recommendations or can send me in the correct direction please? Any help would help would be appreciated. From what I can see with the recommendations the minimum is 16, 8, 8 and 128-256 of ram. Is Elasticsearch that process heavy?