Manticore Search
Full-text search and data analytics, with fast response time for small, medium and big data (alternative to Elasticsearch).
Directory Structure
- .env
- docker-compose.yml
docker-compose.yml
version: '2.2'
services:
manticore:
container_name: manticore
image: manticoresearch/manticore
environment:
- EXTRA=1
restart: always
ports:
- 127.0.0.1:9306:9306
- 127.0.0.1:9308:9308
ulimits:
nproc: 65535
nofile:
soft: 65535
hard: 65535
memlock:
soft: -1
hard: -1
volumes:
- ./data:/var/lib/manticore
# - ./manticore.conf:/etc/manticoresearch/manticore.conf # uncomment if you use a custom configResources
Website: https://manticoresearch.com/
GitHub: https://github.com/manticoresoftware/manticoresearch
Docker Hub: https://hub.docker.com/r/manticoresearch/manticore
Configuration: https://github.com/manticoresoftware/docker