Files
tauri-search/docker-compose.yml
Ken Snyder 19fde622c3 docs: small updates to help with ENV variables and docker compose
chore: made sure that push-caches CLI creates the indexes before pushing docs (so that Model's config is used)
2022-02-03 12:38:36 -08:00

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: