Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 1.21 KB

File metadata and controls

27 lines (15 loc) · 1.21 KB

Meilisearch

Meilisearch is an open source search-engine. It can be used in ddev to handle search indexes for the Drupal search_api, or as a backend for Laravel Scout.

Using official meilisearch v0.27.2 container meilisearch.

Installation

Copy docker-compose.meilisearch.yaml to your project's .ddev folder.

Configuration

From within the container, the meilisearch container is reached at hostname: ddev-<projectname>-meilisearch, port: 7700, so the in-container server URL might be http://ddev-<projectname>-meilisearch:7700.

Connection

You can access the Meilisearch server directly from the host for debugging purposes by visiting http://<projectname>.ddev.site:7700.

You can use ddev logs -s meilisearch to investigate what the meilisearch daemon has been up to.

Additional Resources

Contributed by @thilohille