Skip to content

Commit df41020

Browse files
authored
Merge pull request #753 from netbox-community/renovate/redis-7.x
Update dependency redis to v7
2 parents 1332df4 + 184ff72 commit df41020

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker-compose.test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ services:
2121
image: postgres:14-alpine
2222
env_file: env/postgres.env
2323
redis:
24-
image: redis:6-alpine
24+
image: redis:7-alpine
2525
command:
2626
- sh
2727
- -c # this is to evaluate the $REDIS_PASSWORD from the env
2828
- redis-server --appendonly yes --requirepass $$REDIS_PASSWORD ## $$ because of docker-compose
2929
env_file: env/redis.env
3030
redis-cache:
31-
image: redis:6-alpine
31+
image: redis:7-alpine
3232
command:
3333
- sh
3434
- -c # this is to evaluate the $REDIS_PASSWORD from the env

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242

4343
# redis
4444
redis:
45-
image: redis:6-alpine
45+
image: redis:7-alpine
4646
command:
4747
- sh
4848
- -c # this is to evaluate the $REDIS_PASSWORD from the env
@@ -51,7 +51,7 @@ services:
5151
volumes:
5252
- netbox-redis-data:/data
5353
redis-cache:
54-
image: redis:6-alpine
54+
image: redis:7-alpine
5555
command:
5656
- sh
5757
- -c # this is to evaluate the $REDIS_PASSWORD from the env

0 commit comments

Comments
 (0)