-
Notifications
You must be signed in to change notification settings - Fork 272
Expand file tree
/
Copy pathnimbus-vp.yml
More file actions
52 lines (49 loc) · 1.46 KB
/
nimbus-vp.yml
File metadata and controls
52 lines (49 loc) · 1.46 KB
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
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
rpc-proxy:
restart: "unless-stopped"
build:
context: ./nimbus-vp
dockerfile: ${NIMVP_DOCKERFILE}
args:
- BUILD_TARGET=${NIMVP_SRC_BUILD_TARGET:-master}
- SRC_REPO=${NIMVP_SRC_REPO:-https://github.com/status-im/nimbus-eth1}
- DOCKER_TAG=${NIMVP_DOCKER_TAG:-latest}
- DOCKER_REPO=${NIMVP_DOCKER_REPO:-statusim/nimbus-verified-proxy}
stop_grace_period: 30s
image: nimbus-vp:local
pull_policy: never
user: user
environment:
- CL_NODE=${CL_NODE}
- PROXY_EXTRAS=${PROXY_EXTRAS:-}
volumes:
- nimbus-vp-data:/var/lib/nimbus
- /etc/localtime:/etc/localtime:ro
networks:
default:
aliases:
# This allows multiple Eth Docker stacks all connected to the same bridge network
- ${RPC_PROXY_ALIAS:-default-rpc-proxy}
<<: *logging
entrypoint:
- docker-entrypoint.sh
- nimbus_verified_proxy
- --data-dir=/var/lib/nimbus
- --network=${NETWORK}
- --execution-api-url=${RPC_URL}
- --listen-url=http://0.0.0.0:${PROXY_RPC_PORT:-48545}
- --listen-url=ws://0.0.0.0:${PROXY_WS_PORT:-48546}
- --beacon-api-url=${CL_NODE}
- --log-level=${LOG_LEVEL}
volumes:
nimbus-vp-data:
networks:
default:
enable_ipv6: ${IPV6:-false}