ZincSearch

Search engine that requires minimal resources (alternative to Elasticsearch).

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: "3.3"
 
services:
  zincsearch:
    container_name: zincsearch
    image: public.ecr.aws/zinclabs/zincsearch:latest  
    volumes:
      - /full/path/of/data:/data
    environment:
      - ZINC_DATA_PATH=/data
      - ZINC_FIRST_ADMIN_USER=admin
      - ZINC_FIRST_ADMIN_PASSWORD=Complexpass#123
    ports:
      - 4080:4080
    restart: always

Resources

Website: https://zincsearch-docs.zinc.dev/

GitHub: https://github.com/zincsearch/zincsearch

Docker Image: https://gallery.ecr.aws/zinclabs/zincsearch

Configuration: https://zincsearch-docs.zinc.dev/installation/