-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
68 lines (62 loc) · 1.51 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
version: '3'
services:
redis-7001:
container_name: redis_node_7001
build: ./redis/7001
network_mode: host
restart: always
volumes:
- ./redis/7001/data:/data
ports:
- '7001:7001'
- '17001:17001'
redis-7002:
container_name: redis_node_7002
build: ./redis/7002
network_mode: host
restart: always
volumes:
- ./redis/7002/data:/data
ports:
- '7002:7002'
- '17002:17002'
redis-7003:
container_name: redis_node_7003
build: ./redis/7003
network_mode: host
restart: always
volumes:
- ./redis/7003/data:/data
ports:
- '7003:7003'
- '17003:17003'
redis-7004:
container_name: redis_node_7004
build: ./redis/7004
network_mode: host
restart: always
volumes:
- ./redis/7004/data:/data
ports:
- '7004:7004'
- '17004:17004'
redis-7005:
container_name: redis_node_7005
build: ./redis/7005
network_mode: host
restart: always
volumes:
- ./redis/7005/data:/data
ports:
- '7005:7005'
- '17005:17005'
redis-7006:
container_name: redis_node_7006
build: ./redis/7006
network_mode: host
restart: always
volumes:
- ./redis/7006/data:/data
ports:
- '7006:7006'
- '17006:17006'