Elasticsearch up and running development mode
- related
- Elasticsearch
Run elasticsearch easily in development mode
Container using nerdctl
Get the Dockerfile
Clone the homelab repo
Build the image
Inside the homelab repo
cd containers/elasticsearch
nerdctl image build -t jimboylabs/elasticsearch:latest .
Run the container
nerdctl container run -e "discovery.type=single-node" -v elasticsearch:/usr/share/elasticsearch/data \
-p 9200:9200 -p 9300:9300 -d --name jim_es jimboylabs/elasticsearch:latest