mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-12-30 00:30:09 +00:00
* use new Docker images and add a health check for ES * try * silence streamlit errors * remove CMD override * final touches * leftover * make pylint happy
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
services:
|
|
|
|
haystack-api:
|
|
# Pull Haystack's latest commit
|
|
image: "deepset/haystack:cpu-main"
|
|
ports:
|
|
- 8000:8000
|
|
restart: on-failure
|
|
environment:
|
|
# See rest_api/pipeline/pipelines.haystack-pipeline.yml for configurations of Search & Indexing Pipeline.
|
|
- DOCUMENTSTORE_PARAMS_HOST=elasticsearch
|
|
- PIPELINE_YAML_PATH=/opt/venv/lib/python3.10/site-packages/rest_api/pipeline/pipelines.haystack-pipeline.yml
|
|
- QUERY_PIPELINE_NAME=query
|
|
- TOKENIZERS_PARALLELISM=false
|
|
depends_on:
|
|
elasticsearch:
|
|
condition: service_healthy
|
|
|
|
elasticsearch:
|
|
# This image is "ready-to-query" with some indexed articles
|
|
# about countries and capital cities from Wikipedia:
|
|
image: "deepset/elasticsearch-countries-and-capitals"
|
|
ports:
|
|
- 9200:9200
|
|
restart: on-failure
|
|
environment:
|
|
- discovery.type=single-node
|
|
- "ES_JAVA_OPTS=-Xms1024m -Xmx1024m"
|
|
healthcheck:
|
|
test: curl --fail http://localhost:9200/_cat/health || exit 1
|
|
interval: 10s
|
|
timeout: 1s
|
|
retries: 10
|
|
|
|
ui:
|
|
depends_on:
|
|
- haystack-api
|
|
build:
|
|
context: ui
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- 8501:8501
|
|
restart: on-failure
|
|
environment:
|
|
- API_ENDPOINT=http://haystack-api:8000
|
|
- EVAL_FILE=ui/eval_labels_example.csv
|
|
# The value of the following variables will be read from the host, if present.
|
|
# They can also be temporarily set for docker-compose, for example:
|
|
# DISABLE_FILE_UPLOAD=1 DEFAULT_DOCS_FROM_RETRIEVER=5 docker-compose up
|
|
- DISABLE_FILE_UPLOAD
|
|
- DEFAULT_QUESTION_AT_STARTUP
|
|
- DEFAULT_DOCS_FROM_RETRIEVER
|
|
- DEFAULT_NUMBER_OF_ANSWERS
|