Skip to content

Instantly share code, notes, and snippets.

@sombriks
Created February 20, 2024 21:29
Show Gist options
  • Save sombriks/845d0321d3ca3873b05ead27523d9c43 to your computer and use it in GitHub Desktop.
Save sombriks/845d0321d3ca3873b05ead27523d9c43 to your computer and use it in GitHub Desktop.
running pelias elastic search standalone for testing purposes
version: "3.8"
services:
elasticsearch:
image: pelias/elasticsearch:7.16.1
restart: always
ports: [ "127.0.0.1:9200:9200", "127.0.0.1:9300:9300" ]
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
cap_add: [ "IPC_LOCK" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment