You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
384 B

3 years ago
  1. meilisearch:
  2. image: 'getmeili/meilisearch:latest'
  3. ports:
  4. - '${FORWARD_MEILISEARCH_PORT:-7700}:7700'
  5. volumes:
  6. - 'sailmeilisearch:/data.ms'
  7. networks:
  8. - sail
  9. healthcheck:
  10. test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:7700/health"]
  11. retries: 3
  12. timeout: 5s