Skip to content

Commit 9046e96

Browse files
authored
feat: Set Redis as default cache and update dify-web to v1.8.0 (#43)
- Change default cache option from MySQL to Redis in setup-mysql-env.sh - Update dify-web version from 1.7.0 to 1.8.0 in docker-compose-redis.yaml - Ensure version consistency across all docker-compose files
1 parent 8f99204 commit 9046e96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/docker-compose-redis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ services:
608608

609609
# Frontend web application.
610610
web:
611-
image: langgenius/dify-web:1.7.0
611+
image: langgenius/dify-web:1.8.0
612612
restart: always
613613
environment:
614614
CONSOLE_API_URL: ${CONSOLE_API_URL:-}

docker/setup-mysql-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ update_env "VECTOR_STORE" "oceanbase"
218218
update_env "PIP_MIRROR_URL" "https://pypi.tuna.tsinghua.edu.cn/simple"
219219

220220
# Redis configuration
221-
USE_REDIS=$(get_user_input "Use Redis for caching? Y or N:" "N")
221+
USE_REDIS=$(get_user_input "Use Redis for caching? Y or N:" "Y")
222222

223223
if [ "$USE_REDIS" == "Y" ]; then
224224
print_message "info" "Configuring Redis cache..."

0 commit comments

Comments
 (0)