forked from ethstaker/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontributoor.yml
More file actions
26 lines (25 loc) · 798 Bytes
/
contributoor.yml
File metadata and controls
26 lines (25 loc) · 798 Bytes
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
# EthPandaOps Contributoor, for use alongside a consensus layer client
## Read more: https://github.com/ethpandaops/contributoor
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
contributoor:
restart: "unless-stopped"
image: ${CONTRIBUTOOR_DOCKER_REPO}:${CONTRIBUTOOR_DOCKER_TAG}
volumes:
- /etc/localtime:/etc/localtime:ro
<<: *logging
entrypoint:
- sentry
- --network=${NETWORK}
- --beacon-node-address=${CL_NODE}
- --username=${CONTRIBUTOOR_USERNAME}
- --password=${CONTRIBUTOOR_PASSWORD}
- --attestation-subnet-check-enabled
- --log-level=${LOG_LEVEL}
command: ${CONTRIBUTOOR_EXTRAS}