Update docker-compose.yaml
Some checks failed
Updates/open-webui-ollama-docker-deploy/pipeline/head There was a failure building this commit

This commit is contained in:
Adam Outler 2025-03-11 23:16:34 +00:00
parent b06b3b77d6
commit e7dfd9af8a

View File

@ -99,14 +99,19 @@ services:
networks:
- shared_net
chromaviz:
image: mtybadger/chromaviz:latest
chromadb:
container_name: chromadb
image: ${CHROMADB:-chromadb/chroma:latest}
restart: always
ports:
- "5000:5000"
- 8000:8000
volumes:
- chromadb:/chroma # Persist database storage
environment:
CHROMA_API_URL: http://chromadb:8000
depends_on:
- chromadb
IS_PERSISTENT: TRUE # Enable persistent storage
networks:
- shared_net
volumes:
ollama: