diff --git a/install/management_compose.yaml b/install/management_compose.yaml index b1b17d1..d2a86df 100644 --- a/install/management_compose.yaml +++ b/install/management_compose.yaml @@ -29,12 +29,12 @@ services: - DB_PASSWORD=replaceme - DB_NAME=nomad - DB_SSL=false - - REDIS_HOST=redis + - REDIS_HOST=valkey - REDIS_PORT=6379 depends_on: mysql: condition: service_healthy - redis: + valkey: condition: service_healthy entrypoint: ["/usr/local/bin/entrypoint.sh"] healthcheck: @@ -71,16 +71,16 @@ services: interval: 30s timeout: 10s retries: 3 - redis: - image: redis:7-alpine - container_name: nomad_redis + valkey: + image: valkey/valkey:8-alpine + container_name: nomad_valkey restart: unless-stopped ports: - "6379:6379" volumes: - - /opt/project-nomad/redis:/data + - /opt/project-nomad/valkey:/data healthcheck: - test: ["CMD", "redis-cli", "ping"] + test: ["CMD", "valkey-cli", "ping"] interval: 30s timeout: 10s retries: 3 diff --git a/install/sidecar-updater/update-watcher.sh b/install/sidecar-updater/update-watcher.sh index fbb515d..fd475ed 100644 --- a/install/sidecar-updater/update-watcher.sh +++ b/install/sidecar-updater/update-watcher.sh @@ -71,7 +71,7 @@ perform_update() { log "Recreating containers individually (excluding updater)..." # List of services to update (excluding updater) - SERVICES_TO_UPDATE="admin mysql redis dozzle" + SERVICES_TO_UPDATE="admin mysql valkey dozzle" local current_progress=65 local progress_per_service=8 # (95 - 65) / 4 services ≈ 8% per service