Files
chroma/docker-compose.test.yml
Luke VanderHart 13bf3e070f API implementation for segment-based architecture (#662)
## Description of changes

New API implementation backed by the segment-based architecture. Should
be extensible to a full distributed architecture.

---------

Co-authored-by: Jeffrey Huber <jeff@trychroma.com>
Co-authored-by: hammadb <hammad@trychroma.com>
Co-authored-by: Anton Troynikov <atroyn@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Hammad Bashir <HammadB@users.noreply.github.com>
2023-07-05 11:56:39 -07:00

53 lines
1.2 KiB
YAML

version: '3.9'
networks:
test_net:
driver: bridge
services:
test_server:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./:/chroma
- test_index_data:/index_data
command: uvicorn chromadb.app:app --workers 1 --host 0.0.0.0 --port 8000 --log-config log_config.yml
environment:
- CHROMA_DB_IMPL=clickhouse
- CLICKHOUSE_HOST=test_clickhouse
- CLICKHOUSE_PORT=8123
- ANONYMIZED_TELEMETRY=False
- ALLOW_RESET=True
ports:
- ${CHROMA_PORT}:8000
depends_on:
- test_clickhouse
networks:
- test_net
test_clickhouse:
image: clickhouse/clickhouse-server:22.9-alpine
environment:
- ALLOW_EMPTY_PASSWORD=yes
- CLICKHOUSE_TCP_PORT=9000
- CLICKHOUSE_HTTP_PORT=8123
ports:
- '8123:8123'
- '9000:9000'
volumes:
- test_clickhouse_data:/bitnami/clickhouse
- test_backups:/backups
- ./config/backup_disk.xml:/etc/clickhouse-server/config.d/backup_disk.xml
- ./config/chroma_users.xml:/etc/clickhouse-server/users.d/chroma.xml
networks:
- test_net
volumes:
test_clickhouse_data:
driver: local
test_index_data:
driver: local
test_backups:
driver: local