-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
77 lines (77 loc) · 1.64 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
71
72
73
74
75
76
77
version: '3'
services:
substrate:
build: blockchain
container_name: substrate
tty: true
stdin_open: true
ports:
- "4000:4000"
- "5000:5000"
- "6000:6000"
test:
build: test
container_name: test
tty: true
stdin_open: true
env_file:
- ./env/integration.env
volumes:
- ./test:/app
- /app/node_modules
- /app/build
- /app/src/zksync/node_modules
- /app/src/zksync/build
- /app/src/zksync/sdk/zksync.js/node_modules
- /app/src/zksync/sdk/zksync.js/build
- /app/src/zksync/infrastructure/zk/node_modules
- /app/src/zksync/infrastructure/zk/build
- /app/src/zksync/contracts/build
setup:
build:
context: test
dockerfile: DockerSetup
container_name: setup
tty: true
stdin_open: true
env_file:
- ./env/integration.env
volumes:
- ./test:/app
- /app/node_modules
- /app/build
depends_on:
- substrate
operator:
image: zksync/server
container_name: operator
tty: true
stdin_open: true
env_file:
- ./env/common.env
volumes:
- ./test/build:/contracts/build
ports:
- "3000:3000"
- "3031:3031"
- "3030:3030"
- "8088:8088"
prover:
image: zksync/prover
container_name: prover
tty: true
stdin_open: true
env_file:
- ./env/common.env
postgres:
build: ./test/src/zksync/core/lib/storage/migrations
container_name: postgres
tty: true
stdin_open: true
ports:
- "5432:5432"
ticker:
image: "matterlabs/dev-ticker:latest"
container_name: ticker
ports:
- "9876:9876"