ZincSearch provides a powerful full-text search and indexing engine without the complexity and resource demands of traditional solutions. Designed as a lightweight alternative to Elasticsearch, it runs as a single binary, making installation and deployment incredibly simple across various platforms.
It's an ideal choice for developers who need robust search capabilities quickly. The engine is schemaless, allowing you to index documents with different fields within the same index without defining a schema upfront. It also includes a built-in web UI for querying data and comes with authentication out of the box.
Key features include:
services:
zincsearch:
image: zinclabs/zincsearch:latest
container_name: zincsearch
restart: unless-stopped
ports:
- "4080:4080"
environment:
- ZINC_FIRST_ADMIN_USER=${ZINC_FIRST_ADMIN_USER}
- ZINC_FIRST_ADMIN_PASSWORD=${ZINC_FIRST_ADMIN_PASSWORD}
- ZINC_DATA_PATH=/data
volumes:
- ./data:/dataZINC_FIRST_ADMIN_USER=admin
ZINC_FIRST_ADMIN_PASSWORD=YourSecurePassword123!Auto-fetched about 15 hours ago