-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose1.yml
56 lines (56 loc) · 1.03 KB
/
docker-compose1.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
version: "3"
services:
kv-server.3:
image: ms3/gr10/ecs-server:latest
build:
context: .
dockerfile: Dockerfile-ecsServer
ports:
- "4000:4000"
command:
- "-a"
- "kv-server.3"
- "-p"
- "4000"
- "-ll"
- "FINEST"
kv-server.1:
image: ms3/gr10/kv-server:latest
build:
context: .
dockerfile: Dockerfile-kvServer
ports:
- "5152:5152"
- "4001:4000"
- "3000:3000"
depends_on:
- kv-server.3
command:
- "-c"
- "500"
- "-s"
- "LRU"
- "-a"
- "kv-server.1"
- "-p"
- "5152"
- "-rs"
- "kv-server.0"
- "-re"
- "255"
- "-ll"
- "FINEST"
# performance-client:
# image: ms3/gr10/performance-client:latest
# build:
# context: .
# dockerfile: Dockerfile-performanceClient
# depends_on:
# - ecs-server
# - kv-server1
# command:
# - "1"
# - "5c-1s-500-lru"
# - "get"
# volumes:
# - G:\ms3\performance\:/mnt/mydata