-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·84 lines (65 loc) · 1.21 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
78
79
80
81
82
83
84
compilers:
image: eris/compilers:latest
ipfs:
image: eris/ipfs:latest
ports:
- "4001:4001"
- "8080:8080"
# Run a blockchain only on the master.
helloworldmaster:
image: eris/erisdb:0.9
expose:
- "15254"
- "15256"
environment:
- MASTER=true
- SERVE_GBLOCK=true
- FETCH_PORT=15256
# Create a Hello World instance for writing data.
helloworldwrite:
build: .
links:
- compilers
- ipfs
- helloworldmaster
expose:
- "15254"
ports:
# for debugging
- "3000:3000"
environment:
- CONTAINERS=true
# Create a Hello World instance for reading data.
helloworldread:
build: .
links:
- compilers
- ipfs
- helloworldmaster
- helloworldwrite
expose:
- "15254"
ports:
# for debugging
- "3001:3000"
environment:
- ROOT_CONTRACT
- CONTAINERS=true
seleniumhub:
image: selenium/hub:latest
expose:
- "4444"
seleniumnode:
image: selenium/node-chrome:latest
# image: selenium/node-chrome-debug:latest
links:
- seleniumhub:hub
- helloworldwrite
- helloworldread
# Attach VNC to this port for debugging. The password is 'secret'.
ports:
- "5900:5900"
helloworldtest:
build: test
links:
- seleniumhub:selenium