mirror of
https://github.com/tauri-apps/tauri-search.git
synced 2026-02-04 02:41:20 +01:00
chore: made sure that push-caches CLI creates the indexes before pushing docs (so that Model's config is used)
27 lines
588 B
YAML
27 lines
588 B
YAML
services:
|
|
# We are not using the scraper for anything currently but keeping it here
|
|
# for now in case we decide to
|
|
|
|
scraper:
|
|
image: getmeili/docs-scraper:latest
|
|
container_name: scraper
|
|
command: pipenv run ./docs_scraper/config.json -v -d
|
|
depends_on:
|
|
- search
|
|
environment:
|
|
- MEILISEARCH_HOST_URL=localhost:7700
|
|
- MEILISEARCH_API_KEY=""
|
|
volumes:
|
|
- ./scraper:/data.ms
|
|
|
|
search:
|
|
image: getmeili/meilisearch:latest
|
|
container_name: search
|
|
ports:
|
|
- 7700:7700
|
|
volumes:
|
|
- search_db:/home/db
|
|
|
|
volumes:
|
|
search_db:
|