Status | experimental |
OCI Reference | cgr.dev/chainguard/meilisearch |
- View Image in Chainguard Academy
- View Image Catalog for a full list of available tags. Contact Chainguard for enterprise support, SLAs, and access to older tags.
Minimal meilisearch image.
The image specifies a default non-root meilisearch
user (UID 999), and a data and dump directory at /var/data.ms
, owned by that meilisearch
user, accessible to all users.
The image is available on cgr.dev
:
docker pull cgr.dev/chainguard/meilisearch:latest
Run a meilisearch container with the following command:
docker run \
--rm \
-d \
-p 7700:7700 \
cgr.dev/chainguard/meilisearch:latest \
--db-path /var/data.ms
--dump-dir /var/data.ms/dumps \
--http-addr 0.0.0.0:7700
Then you can follow the meilisearch quick start guide and start adding documents.