forked from scaleoutsystems/fedn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmnist-clients.yaml
75 lines (69 loc) · 2.44 KB
/
mnist-clients.yaml
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
version: '3.7'
services:
client1:
environment:
- GET_HOSTS_FROM=dns
- CLIENT_NAME=${CLIENT_NAME_BASE}1
image: "scaleoutsystems/client:latest"
build:
context: .
dockerfile: components/client/Dockerfile
working_dir: /app/client
command: /bin/bash -c "sleep 10 && fedn run client -d discovery -p 8080 -n ${CLIENT_NAME_BASE}1 -t e9a3cb4c5eaff546eec33ff68a7fbe232b68a192"
volumes:
- ./test/${EXAMPLE}/client:/app/client
- ./test/${EXAMPLE}/data:/app/data
client2:
environment:
- GET_HOSTS_FROM=dns
- CLIENT_NAME=${CLIENT_NAME_BASE}2
image: "scaleoutsystems/client:latest"
build:
context: .
dockerfile: components/client/Dockerfile
working_dir: /app/client
command: /bin/bash -c "sleep 10 && fedn run client -d discovery -p 8080 -n ${CLIENT_NAME_BASE}2 -t e9a3cb4c5eaff546eec33ff68a7fbe232b68a192"
volumes:
- ./test/${EXAMPLE}/client:/app/client
- ./test/${EXAMPLE}/data:/app/data
client3:
environment:
- GET_HOSTS_FROM=dns
- CLIENT_NAME=${CLIENT_NAME_BASE}3
image: "scaleoutsystems/client:latest"
build:
context: .
dockerfile: components/client/Dockerfile
working_dir: /app/client
command: /bin/bash -c "sleep 10 && fedn run client -d discovery -p 8080 -n ${CLIENT_NAME_BASE}3 -t e9a3cb4c5eaff546eec33ff68a7fbe232b68a192"
volumes:
- ./test/${EXAMPLE}/client:/app/client
- ./test/${EXAMPLE}/data:/app/data
ports:
- 8090:8090
client4:
environment:
- GET_HOSTS_FROM=dns
- CLIENT_NAME=${CLIENT_NAME_BASE}4
image: "scaleoutsystems/client:latest"
build:
context: .
dockerfile: components/client/Dockerfile
working_dir: /app/client
command: /bin/bash -c "sleep 10 && fedn run client -d discovery -p 8080 -n ${CLIENT_NAME_BASE}4 -t e9a3cb4c5eaff546eec33ff68a7fbe232b68a192"
volumes:
- ./test/${EXAMPLE}/client:/app/client
- ./test/${EXAMPLE}/data:/app/data
client5:
environment:
- GET_HOSTS_FROM=dns
- CLIENT_NAME=${CLIENT_NAME_BASE}5
image: "scaleoutsystems/client:latest"
build:
context: .
dockerfile: components/client/Dockerfile
working_dir: /app/client
command: /bin/bash -c "sleep 10 && fedn run client -d discovery -p 8080 -n ${CLIENT_NAME_BASE}5 -t e9a3cb4c5eaff546eec33ff68a7fbe232b68a192"
volumes:
- ./test/${EXAMPLE}/client:/app/client
- ./test/${EXAMPLE}/data:/app/data