Skip to content

Commit

Permalink
[BUMP] redis 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelauv committed Aug 23, 2023
1 parent 8be8552 commit 32a1c69
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,43 @@ version: '3.8'

services:
redis-main-1:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-main-2:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-main-3:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-replica-1:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-replica-2:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-replica-3:
image: redis:7.0-bullseye
image: redis:7.2
volumes:
- ./resources/config/redis.conf:/usr/local/etc/redis/redis.conf
command: [ "redis-server", "/usr/local/etc/redis/redis.conf" ]

redis-cluster-create:
image: redis:7.0-bullseye
image: redis:7.2
depends_on:
- redis-main-1
- redis-main-2
Expand Down

0 comments on commit 32a1c69

Please sign in to comment.