1
1
---
2
+ x-client-libs-stack-image : &client-libs-stack-image
3
+ image : " redislabs/client-libs-test:${CLIENT_LIBS_TEST_STACK_IMAGE_TAG:-rs-7.4.0-v2}"
4
+
5
+ x-client-libs-image : &client-libs-image
6
+ image : " redislabs/client-libs-test:${CLIENT_LIBS_TEST_IMAGE_TAG:-7.4.2}"
2
7
3
8
services :
4
9
5
10
redis :
6
- image : ${CLIENT_LIBS_TEST_IMAGE:-redislabs/ client-libs-test:7.4.1}
11
+ << : * client-libs-image
7
12
container_name : redis-standalone
8
13
environment :
9
14
- TLS_ENABLED=yes
@@ -24,20 +29,26 @@ services:
24
29
- all
25
30
26
31
replica :
27
- image : ${REDIS_IMAGE:-redis:7.4.1}
32
+ << : *client-libs-image
28
33
container_name : redis-replica
29
34
depends_on :
30
35
- redis
31
- command : redis-server --replicaof redis 6379 --protected-mode no --save ""
36
+ environment :
37
+ - TLS_ENABLED=no
38
+ - REDIS_CLUSTER=no
39
+ - PORT=6380
40
+ command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --replicaof redis 6379 --protected-mode no --save ""}
32
41
ports :
33
- - 6380:6379
42
+ - 6380:6380
43
+ volumes :
44
+ - " ./dockers/replica:/redis/work"
34
45
profiles :
35
46
- replica
36
47
- all-stack
37
48
- all
38
49
39
50
cluster :
40
- image : ${CLIENT_LIBS_TEST_IMAGE:-redislabs/ client-libs-test:7.4.1}
51
+ << : * client-libs-image
41
52
container_name : redis-cluster
42
53
environment :
43
54
- REDIS_CLUSTER=yes
@@ -58,57 +69,38 @@ services:
58
69
- all
59
70
60
71
sentinel :
61
- image : ${REDIS_IMAGE:-redis:7.4.1}
72
+ << : *client-libs-image
62
73
container_name : redis-sentinel
63
74
depends_on :
64
75
- redis
65
- entrypoint : " redis-sentinel /redis.conf --port 26379"
76
+ environment :
77
+ - REDIS_CLUSTER=no
78
+ - NODES=3
79
+ - PORT=26379
80
+ command : ${REDIS_EXTRA_ARGS:---sentinel}
66
81
ports :
67
82
- 26379:26379
68
- volumes :
69
- - " ./dockers/sentinel.conf:/redis.conf"
70
- profiles :
71
- - sentinel
72
- - all-stack
73
- - all
74
-
75
- sentinel2 :
76
- image : ${REDIS_IMAGE:-redis:7.4.1}
77
- container_name : redis-sentinel2
78
- depends_on :
79
- - redis
80
- entrypoint : " redis-sentinel /redis.conf --port 26380"
81
- ports :
82
83
- 26380:26380
83
- volumes :
84
- - " ./dockers/sentinel.conf:/redis.conf"
85
- profiles :
86
- - sentinel
87
- - all-stack
88
- - all
89
-
90
- sentinel3 :
91
- image : ${REDIS_IMAGE:-redis:7.4.1}
92
- container_name : redis-sentinel3
93
- depends_on :
94
- - redis
95
- entrypoint : " redis-sentinel /redis.conf --port 26381"
96
- ports :
97
84
- 26381:26381
98
85
volumes :
99
- - " ./dockers/sentinel.conf:/redis.conf"
86
+ - " ./dockers/sentinel.conf:/redis/config-default/redis.conf"
87
+ - " ./dockers/sentinel:/redis/work"
100
88
profiles :
101
89
- sentinel
102
90
- all-stack
103
91
- all
104
92
105
93
redis-stack :
106
- image : ${REDIS_STACK_IMAGE:-redis/redis -stack-server:latest}
94
+ << : *client-libs -stack-image
107
95
container_name : redis-stack
96
+ environment :
97
+ - REDIS_CLUSTER=no
98
+ - PORT=6379
99
+ command : ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
108
100
ports :
109
101
- 6479:6379
110
- environment :
111
- - " REDIS_ARGS=${REDIS_STACK_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ''} "
102
+ volumes :
103
+ - " ./dockers/redis-stack:/redis/work "
112
104
profiles :
113
105
- standalone
114
106
- all-stack
0 commit comments