-
Notifications
You must be signed in to change notification settings - Fork 875
/
docker-compose.yml
127 lines (110 loc) · 2.81 KB
/
docker-compose.yml
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
services:
redis7:
image: redis:7.4
command: "redis-server --enable-debug-command yes --protected-mode no"
ports:
- "16385:6379"
- "6379:6379"
redis7-tls:
image: redis:7.4
volumes:
- ./contrib/tls:/tls
command: |
redis-server --enable-debug-command yes --protected-mode no
--tls-port 6379 --port 0
--tls-cert-file /tls/redis.crt
--tls-key-file /tls/redis.key
--tls-ca-cert-file /tls/ca.crt
ports:
- "16387:6379"
valkey8:
image: valkey/valkey:8
command: "valkey-server --enable-debug-command yes --protected-mode no"
ports:
- "16382:6379"
valkey8-tls:
image: valkey/valkey:8
volumes:
- ./contrib/tls:/tls
command: |
valkey-server --enable-debug-command yes --protected-mode no
--tls-port 6379 --port 0
--tls-cert-file /tls/redis.crt
--tls-key-file /tls/redis.key
--tls-ca-cert-file /tls/ca.crt
ports:
- "16386:6379"
valkey7:
image: valkey/valkey:7.2
command: "valkey-server --enable-debug-command yes --protected-mode no"
ports:
- "16384:6379"
redis6:
image: redis:6.2
command: "redis-server --protected-mode no"
ports:
- "16379:6379"
redis5:
image: redis:5
command: "redis-server"
ports:
- "16383:6379"
pwd-redis5:
image: redis:5
command: "redis-server --requirepass redis-password"
ports:
- "16380:6379"
pwd-redis6:
image: redis:6
command: "redis-server --requirepass dummy --user exporter on +CLIENT +INFO +SELECT +SLOWLOG +LATENCY '>exporter-password'"
ports:
- "16390:6379"
redis-2-8:
image: redis:2.8
command: "redis-server"
ports:
- "16381:6379"
keydb-01:
image: "eqalpha/keydb:x86_64_v6.3.1"
command: "keydb-server --protected-mode no"
ports:
- "16401:6379"
keydb-02:
image: "eqalpha/keydb:x86_64_v6.3.1"
command: "keydb-server --protected-mode no --active-replica yes --replicaof keydb-01 6379"
ports:
- "16402:6379"
redis-cluster:
image: grokzen/redis-cluster:6.2.14
ports:
- "7000"
- "7001"
- "7002"
- "7003"
- "7004"
- "7005"
- "17000:7000"
- "17005:7005"
redis-cluster-password:
image: bitnami/redis-cluster
environment:
- REDIS_PORT_NUMBER=7006
- REDIS_PASSWORD=redis-password
- REDIS_CLUSTER_CREATOR=yes
- REDIS_NODES=redis-cluster-password:7006
ports:
- "17006:7006"
redis-sentinel:
image: docker.io/bitnami/redis-sentinel:6.2-debian-10
environment:
- REDIS_MASTER_HOST=redis6
ports:
- "26379:26379"
tile38:
image: tile38/tile38:latest
ports:
- "19851:9851"
redis-stack:
image: redis/redis-stack-server:7.4.0-v0
ports:
- "36379:6379"