-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
87 lines (81 loc) · 2.07 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
85
86
version: '2.3'
services:
staking-cli: &stakingcli
image: block.com/staking-cli
build:
context: .
dockerfile: staking-cli-docker/Dockerfile
args:
DATA_DIR: "/basicconfig"
VERSION: master
SOURCE_CODE: "https://github.com/oris-chain/staking-deposit-cli.git"
SYMBOL: CLI
volumes:
- ./basicconfig:/basicconfig
ethbase: ðbase
image: block.com/gethbase
build:
context: .
dockerfile: execution-docker-base/Dockerfile
args:
CONFIG_BASE_DIR: "/basicconfig"
DATA_DIR: "/execution"
SOURCE_CODE: "https://github.com/oris-chain/go-ethereum.git"
VERSION: release-v1.13.4
SYMBOL: ETH
volumes:
- ./basicconfig:/basicconfig
- ./execution:/execution
beaconbase: &beaconbase
image: block.com/beaconbase
build:
context: .
dockerfile: consensus-docker-base/Dockerfile
args:
CONFIG_BASE_DIR: "/basicconfig"
VERSION: release-v4.1.1
SOURCE_CODE: "https://github.com/oris-chain/prysm.git"
SYMBOL: BEACON
volumes:
- ./basicconfig:/basicconfig
eth: ð
image: block.com/geth
build:
context: .
dockerfile: execution-docker/Dockerfile
args:
PORT_RPC: 8545
EXTIP: "18.189.229.165"
volumes:
- ./execution:/execution
- ./execution-data:/data-ephemeral
- ./basicconfig:/basicconfig
ports:
- 8551:8551
- 8545:8545
- 30303:30303
depends_on:
- ethbase
beacon: &beacon-chain
image: block.com/beacon-chain
build:
context: .
dockerfile: consensus-docker/Dockerfile
args:
DATA_DIR: "/consensus"
PEER_INFO:
HOST_IP: 18.189.229.165
FEE_RECIPIENT: "0x6d68c8135Ca356f5839982210E9EF331d1758C14"
volumes:
- ./consensus:/consensus
- ./consensus-data:/data-ephemeral
- ./basicconfig:/basicconfig
ports:
- 4000:4000
- 3500:3500
- 8080:8080
- 13000:13000
- 6060:6060
- 7070:7070
depends_on:
- beaconbase