Update docker-compose.yaml
All checks were successful
Updates/open-webui-ollama-docker-deploy/pipeline/head This commit looks good

This commit is contained in:
Adam Outler 2025-04-03 14:14:40 +00:00
parent ff16f907a6
commit bf57b14ac4

View File

@ -108,6 +108,12 @@ services:
OAUTH_USERNAME_CLAIM: name OAUTH_USERNAME_CLAIM: name
OAUTH_MERGE_ACCOUNTS_BY_EMAIL: true OAUTH_MERGE_ACCOUNTS_BY_EMAIL: true
# Redis Support
ENABLE_WEBSOCKET_SUPPORT: True
WEBSOCKET_MANAGER: redis # This is the default, no need to set explicitly unless changing
WEBSOCKET_REDIS_URL: redis://redis:6379/0
REDIS_URL: redis://redis:6379/0 # Also set for app state, using the same instance
tika: tika:
image: ${TIKA:-apache/tika:latest} image: ${TIKA:-apache/tika:latest}
@ -129,11 +135,22 @@ services:
networks: networks:
- shared_net - shared_net
redis:
image: redis:alpine
container_name: redis
restart: always
volumes:
- redis_data:/data
networks:
- shared_net
volumes: volumes:
ollama: ollama:
ollama-small: ollama-small:
data: data:
chromadb: chromadb:
redis_data:
networks: networks:
shared_net: shared_net: