Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ services:
test: echo stats | nc 127.0.0.1 11211
redis:
<<: *restart_policy
image: "redis:6.2.14-alpine"
image: "docker.io/valkey/valkey:8.1.3-alpine"
healthcheck:
<<: *healthcheck_defaults
test: redis-cli ping | grep PONG
test: valkey-cli ping | grep PONG
volumes:
- "sentry-redis:/data"
- type: bind
Expand All @@ -129,7 +129,7 @@ services:
nofile:
soft: 10032
hard: 10032
command: ["redis-server", "/usr/local/etc/redis/redis.conf"]
command: ["valkey-server", "/usr/local/etc/redis/redis.conf"]
postgres:
<<: *restart_policy
# Using the same postgres version as Sentry dev for consistency purposes
Expand Down