Skip to content

Commit

Permalink
chore: remove patch version pin from redis image tag (#5660)
Browse files Browse the repository at this point in the history
  • Loading branch information
daveqnet authored Jan 13, 2025
1 parent 7ea4ad5 commit 83cb612
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-compose.child-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ services:
- node.labels.fides.app-db-data == true

redis-child:
image: "redis:6.2.5-alpine"
image: "redis:6.2-alpine"
command: redis-server --requirepass redispassword
expose:
- 6379
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ services:
- /fides/src/fides.egg-info

redis:
image: "redis:6.2.5-alpine"
image: "redis:6.2-alpine"
# AUTH option #1: no authentication at all
# command: redis-server
# AUTH option #2: require password
Expand Down
2 changes: 1 addition & 1 deletion docker/docker-compose.minimal-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
- node.labels.fides.app-db-data == true

redis:
image: "redis:6.2.5-alpine"
image: "redis:6.2-alpine"
command: redis-server --requirepass redispassword
expose:
- 6379
Expand Down
2 changes: 1 addition & 1 deletion src/fides/data/sample_project/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ services:

redis:
container_name: fides-redis
image: redis:6.2.5-alpine
image: redis:6.2-alpine
command: redis-server --requirepass redispassword
ports:
- "7379:6379"
Expand Down

0 comments on commit 83cb612

Please sign in to comment.