Skip to content
Closed
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
10 changes: 5 additions & 5 deletions contrib/docker-compose-for-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ version: '3'
services:

redis5:
image: redis:5
image: redis:7
command: "redis-server --port 6383 --dbfilename dump5.rdb"
ports:
- "16383:6383"

redis6:
image: redis:6.2
image: redis:7.0
command: "redis-server --protected-mode no --dbfilename dump6.rdb"
ports:
- "16379:6379"
Expand All @@ -20,19 +20,19 @@ services:
- "16384:6384"

pwd-redis5:
image: redis:5
image: redis:7
command: "redis-server --port 6380 --requirepass redis-password --dbfilename dump5-pwd.rdb"
ports:
- "16380:6380"

pwd-redis6:
image: redis:6
image: redis:7
command: "redis-server --port 6390 --requirepass dummy --user exporter on +CLIENT +INFO +SELECT +SLOWLOG +LATENCY '>exporter-password' --dbfilename dump6-pwd.rdb"
ports:
- "16390:6390"

redis-2-8:
image: redis:2.8
image: redis:7.0
command: "redis-server --port 6381 --dbfilename dump2-8.rdb"
ports:
- "16381:6381"
Expand Down