-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoe.yml
51 lines (50 loc) · 1.14 KB
/
oe.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
version: "3.4"
services:
eth:
restart: "${RESTART}"
user: openethereum
build:
context: ./openethereum
dockerfile: Dockerfile.binary
args:
- BUILD_TARGET=${OE_SRC_BUILD_TARGET}
- DOCKER_TAG=${OE_DOCKER_TAG}
image: openethereum_cl:local
stop_grace_period: 3m
volumes:
- oe-eth-data:/var/lib/openethereum
ports:
- ${ETH_PORT}:${ETH_PORT}/tcp
- ${ETH_PORT}:${ETH_PORT}/udp
expose:
- ${ETH_WS_PORT}/tcp
- ${ETH_RPC_PORT}/tcp
entrypoint:
- openethereum
- --no-ipc
- --no-secretstore
- --base-path=/var/lib/openethereum
- --jsonrpc-interface=all
- --jsonrpc-apis=web3,eth,pubsub,net
- --jsonrpc-hosts=all
- --ws-interface=all
- --ws-apis=web3,eth,pubsub,net
- --ws-hosts=all
- --ws-origins=all
- --ws-port=${ETH_WS_PORT}
- --reseal-on-txs
- none
- --chain=${ETH_NETWORK}
- --port
- ${ETH_PORT}
- --logging
- ${LOG_LEVEL}
- --snapshot-peers
- "250"
- --cache-size
- "4096"
chainlink:
depends_on:
- eth
volumes:
oe-eth-data: