Skip to content

Commit e2fc62d

Browse files
committed
switch from redis to valkey
1 parent 56a5f4a commit e2fc62d

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docker-compose-infra.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44

55
postgres:
6-
image: postgres:16.1
6+
image: postgres:16.4
77
restart: always
88
container_name: "go8_postgres"
99
healthcheck:
@@ -19,8 +19,8 @@ services:
1919
- postgresVolume:/var/lib/postgresql/data
2020
- ./scripts/create-dbs.sh:/docker-entrypoint-initdb.d/create-dbs.sh
2121

22-
redis:
23-
image: redis:7.2
22+
valkey:
23+
image: valkey/valkey:7.2
2424
restart: always
2525
expose:
2626
- 6379
@@ -120,4 +120,4 @@ services:
120120
volumes:
121121
postgresVolume:
122122
grafanaVolume:
123-
lokiVolume:
123+
lokiVolume:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
- DB_HOST=postgres
1313
- DB_PORT=5432
1414
- OTEL_OTLP_ENDPOINT=otel-collector:4317
15-
- REDIS_HOST=redis
15+
- REDIS_HOST=valkey
1616
build:
1717
context: .
1818
dockerfile: Dockerfile

e2e/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44

55
postgres:
6-
image: "postgres:16.1"
6+
image: "postgres:16.4"
77
container_name: "go8_postgres_e2e"
88
restart: "no"
99
healthcheck:
@@ -24,10 +24,10 @@ services:
2424
depends_on:
2525
- postgres
2626
- migrate
27-
- redis
27+
- valkey
2828

29-
redis:
30-
image: 'redis:7.2'
29+
valkey:
30+
image: 'valkey/valkey:7.2'
3131
container_name: "go8_redis_e2e"
3232
restart: "no"
3333
environment:

0 commit comments

Comments
 (0)