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: networks:
- shared_net - shared_net
chromaviz:
image: mtybadger/chromaviz:latest chromadb:
container_name: chromadb
image: ${CHROMADB:-chromadb/chroma:latest}
restart: always
ports: ports:
- "5000:5000" - 8000:8000
volumes:
- chromadb:/chroma # Persist database storage
environment: environment:
CHROMA_API_URL: http://chromadb:8000 IS_PERSISTENT: TRUE # Enable persistent storage
depends_on: networks:
- chromadb - shared_net
volumes: volumes:
ollama: ollama: