-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
53 lines (49 loc) · 1.14 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
version: '3.7'
services:
parity:
# TODO: update to image that contains Augur v2
image: 'keydonix/parity-instantseal'
ports:
- target: '8545'
published: '1235'
protocol: 'tcp'
mode: 'host'
geth:
# TODO: update to image that contains Augur v2
image: 'keydonix/geth-clique'
ports:
- target: '8545'
published: '1236'
protocol: 'tcp'
mode: 'host'
environment:
GETH_VERBOSITY: '3'
nethermind:
# TODO: update to image that contains Augur v2
image: 'keydonix/nethermind-spaceneth'
environment:
FAKETIME_TIMESTAMP_FILE: '/faketime/faketime'
FAKETIME_NO_CACHE: '1'
ports:
- target: '8545'
published: '1237'
protocol: 'tcp'
mode: 'host'
volumes:
- type: 'volume'
source: 'faketime'
target: '/faketime'
faketime:
image: 'keydonix/faketime-http'
ports:
- target: '80'
published: '12340'
protocol: 'tcp'
mode: 'host'
volumes:
- type: 'volume'
source: 'faketime'
target: '/faketime'
volumes:
faketime:
external: false