coolify/templates/compose/meilisearch.yaml

22 lines
685 B
YAML
Raw Normal View History

2024-02-20 17:08:16 +01:00
# documentation: https://www.meilisearch.com
2024-02-20 15:42:30 +01:00
# slogan: MeiliSearch is a powerful, fast, easy to use and deploy search engine.
2023-12-03 12:16:33 +01:00
# tags: search,engine,fulltext,full,text,meilisearch
2024-02-20 15:42:30 +01:00
# logo: svgs/meilisearch.svg
2024-03-12 17:47:32 +01:00
# port: 7700
2023-12-03 12:16:33 +01:00
services:
meilisearch:
image: getmeili/meilisearch:latest
environment:
2024-03-12 17:47:32 +01:00
- SERVICE_FQDN_MEILISEARCH_7700
2023-12-03 12:16:33 +01:00
- MEILI_NO_ANALYTICS=${MEILI_NO_ANALYTICS:-true}
- MEILI_ENV=${MEILI_ENV:-production}
- MEILI_MASTER_KEY=${SERVICE_PASSWORD_MEILISEARCH}
volumes:
- meilisearch-data:/meili_data
healthcheck:
2024-05-17 10:11:55 +02:00
test: ["CMD", "curl", "-f", "http://127.0.0.1:7700/health"]
2023-12-03 12:16:33 +01:00
interval: 2s
timeout: 10s
retries: 15