Skip to content

Instantly share code, notes, and snippets.

@tazarov
Last active December 31, 2023 15:29
Show Gist options
  • Save tazarov/4fd933274bbacb3b9f286b15c01e904b to your computer and use it in GitHub Desktop.
Save tazarov/4fd933274bbacb3b9f286b15c01e904b to your computer and use it in GitHub Desktop.
Minimal Docker Compose for Chroma
version: '3.9'
networks:
net:
driver: bridge
services:
chromadb:
image: chromadb/chroma:latest
volumes:
- ./chromadb:/chroma/chroma
environment:
- IS_PERSISTENT=TRUE
- ANONYMIZED_TELEMETRY=${ANONYMIZED_TELEMETRY:-TRUE}
ports:
- 8000:8000
networks:
- net
@tazarov
Copy link
Author

tazarov commented Dec 22, 2023

This can be run with curl and docker compose as follows:

curl -s https://gist.githubusercontent.com/tazarov/4fd933274bbacb3b9f286b15c01e904b/raw/87268142d64d8ee0f7f98c27a62a5d089923a1df/docker-compose.yaml | docker-compose -f - up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment