-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
153 lines (143 loc) · 3.62 KB
/
docker-compose.yml
File metadata and controls
153 lines (143 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
---
x-client-libs-stack-image: &client-libs-stack-image
image: "redislabs/client-libs-test:${CLIENT_LIBS_TEST_STACK_IMAGE_TAG:-8.6.1}"
x-client-libs-image: &client-libs-image
image: "redislabs/client-libs-test:${CLIENT_LIBS_TEST_IMAGE_TAG:-8.6.1}"
networks:
redis-net:
driver: bridge
services:
redis:
<<: *client-libs-image
container_name: redis-standalone
environment:
- TLS_ENABLED=yes
- TLS_CLIENT_CNS=test_user
- REDIS_CLUSTER=no
- PORT=6379
- TLS_PORT=6666
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save ""}
ports:
- 6379:6379
- 6666:6666 # TLS port
volumes:
- "./dockers/standalone:/redis/work"
profiles:
- standalone
- sentinel
- replica
- all-stack
- all
replica:
<<: *client-libs-image
container_name: redis-replica
depends_on:
- redis
environment:
- TLS_ENABLED=no
- REDIS_CLUSTER=no
- PORT=6380
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --replicaof redis 6379 --protected-mode no --save ""}
ports:
- 6380:6380
volumes:
- "./dockers/replica:/redis/work"
profiles:
- replica
- all-stack
- all
cluster:
<<: *client-libs-image
container_name: redis-cluster
environment:
- REDIS_CLUSTER=yes
- NODES=6
- REPLICAS=1
- TLS_ENABLED=yes
- TLS_CLIENT_CNS=test_user
- PORT=16379
- TLS_PORT=27379
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save "" --tls-cluster yes}
ports:
- "16379-16384:16379-16384"
- "27379-27384:27379-27384"
volumes:
- "./dockers/cluster:/redis/work"
profiles:
- cluster
- all-stack
- all
sentinel:
<<: *client-libs-image
container_name: redis-sentinel
depends_on:
- redis
environment:
- REDIS_CLUSTER=no
- NODES=3
- PORT=26379
command: ${REDIS_EXTRA_ARGS:---sentinel}
ports:
- 26379:26379
- 26380:26380
- 26381:26381
volumes:
- "./dockers/sentinel.conf:/redis/config-default/redis.conf"
- "./dockers/sentinel:/redis/work"
profiles:
- sentinel
- all-stack
- all
redis-stack:
<<: *client-libs-stack-image
container_name: redis-stack
environment:
- REDIS_CLUSTER=no
- PORT=6379
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
ports:
- 6479:6379
volumes:
- "./dockers/redis-stack:/redis/work"
profiles:
- standalone
- all-stack
- all
redis-proxied:
<<: *client-libs-image
container_name: redis-proxied
ports:
- "3000:3000"
networks:
- redis-net
healthcheck:
test: ["CMD", "redis-cli", "-p", "3000", "PING"]
interval: 10s
timeout: 3s
retries: 5
resp-proxy:
image: redislabs/client-resp-proxy
container_name: resp-proxy
environment:
LISTEN_HOST: "0.0.0.0"
LISTEN_PORT: "15379,15380,15381"
TARGET_HOST: "redis-proxied"
TARGET_PORT: "3000"
API_PORT: "4000"
ENABLE_LOGGING: true
SIMULATE_CLUSTER: true
DEFAULT_INTERCEPTORS: "cluster,hitless,logger"
ports:
- "15379:15379"
- "15380:15380"
- "15381:15381"
- "4000:4000"
depends_on:
- redis-proxied
networks:
- redis-net
healthcheck:
test: ["CMD", "sh", "-c", "wget -qO- http://localhost:4000/stats || exit 1"]
interval: 10s
timeout: 3s
retries: 5