forked from OpenMined/PyGrid-deprecated---see-PySyft-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
65 lines (65 loc) · 1.7 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
version: '3'
services:
gateway:
image: openmined/grid-gateway:latest
build: .
environment:
- PORT=5000
- SECRET_KEY=ineedtoputasecrethere
- DATABASE_URL=sqlite:///databasegateway.db
ports:
- 5000:5000
redis:
image: redis:latest
expose:
- 6379
ports:
- 6379:6379
bob:
image: openmined/grid-node:latest
environment:
- GRID_NETWORK_URL=http://gateway:5000
- ID=Bob
- ADDRESS=http://bob:3000/
- PORT=3000
depends_on:
- "gateway"
- "redis"
ports:
- 3000:3000
alice:
image: openmined/grid-node:latest
environment:
- GRID_NETWORK_URL=http://gateway:5000
- ID=Alice
- ADDRESS=http://alice:3001/
- PORT=3001
depends_on:
- "gateway"
- "redis"
ports:
- 3001:3001
bill:
image: openmined/grid-node:latest
environment:
- GRID_NETWORK_URL=http://gateway:5000
- ID=Bill
- ADDRESS=http://bill:3002/
- PORT=3002
depends_on:
- "gateway"
- "redis"
ports:
- 3002:3002
james:
image: openmined/grid-node:latest
environment:
- GRID_NETWORK_URL=http://gateway:5000
- ID=James
- ADDRESS=http://james:3003/
- PORT=3003
depends_on:
- "gateway"
- "redis"
ports:
- 3003:3003