forked from barryWhiteHat/zknifty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
70 lines (63 loc) · 1.43 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
version: "3"
services:
ethereum:
build: ./services/ethereum
command: -m fire fire fire fire fire fire fire fire fire fire fire fire
ports:
- 8545:8545
networks:
- blockchain
volumes:
- ./services/ethereum:/ethereum
webpack_dev_server:
build: ./services/app
command: yarn start
ports:
- 8080:8080
volumes:
- ./services/app/src:/usr/src/app/src
- ./services/app/webpack.config.js:/usr/src/app/webpack.config.js
- ./services/app/package.json:/usr/src/app/package.json
networks:
- blockchain
- client
env_file:
- .default.env
proof_service:
build: ./services/proof
ports:
- 18861
networks:
- illuminati
volumes:
- ./services/proof/main.py:/root/rpyc/main.py
wallet:
build: ./services/wallet
command: python -u -m signer --host 0.0.0.0 --port 5001
ports:
- 5001:5001
networks:
- client
volumes:
- ./services/wallet/signer:/usr/src/app/signer
env_file:
- .default.env
aggregator:
build: ./services/illuminati
command: python -m aggregator --host 0.0.0.0 --port 5000
ports:
- 5000:5000
depends_on:
- ethereum
- proof_service
networks:
- blockchain
- illuminati
env_file:
- .default.env
volumes:
- ./services/illuminati/aggregator:/usr/src/app/aggregator
networks:
blockchain:
illuminati:
client: