2020-08-01 07:39:04 +00:00
|
|
|
version: '2.2'
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
2021-05-26 10:35:39 +00:00
|
|
|
erigon:
|
2020-08-01 07:39:04 +00:00
|
|
|
image: turbo-geth:latest
|
|
|
|
build: .
|
2021-05-26 10:35:39 +00:00
|
|
|
command: erigon --metrics --metrics.addr="0.0.0.0" --metrics.port="6060" --private.api.addr="0.0.0.0:9090" --pprof --pprof.addr="0.0.0.0" --pprof.port="6061"
|
2020-08-01 07:39:04 +00:00
|
|
|
volumes:
|
2021-05-26 10:35:39 +00:00
|
|
|
- ${XDG_DATA_HOME:-~/.local/share}/erigon:/root/.local/share/erigon
|
2020-08-01 07:39:04 +00:00
|
|
|
ports:
|
2021-03-11 00:07:35 +00:00
|
|
|
- 30303:30303/tcp
|
|
|
|
- 30303:30303/udp
|
2020-08-01 07:39:04 +00:00
|
|
|
|
|
|
|
prometheus:
|
2021-06-19 12:38:02 +00:00
|
|
|
image: prom/prometheus:v2.27.1
|
2020-08-01 07:39:04 +00:00
|
|
|
command: --log.level=warn --config.file=/etc/prometheus/prometheus.yml --storage.tsdb.path=/prometheus --web.console.libraries=/usr/share/prometheus/console_libraries --web.console.templates=/usr/share/prometheus/consoles
|
|
|
|
ports:
|
|
|
|
- 9090:9090
|
|
|
|
volumes:
|
2021-05-26 10:35:39 +00:00
|
|
|
- ${ERIGON_PROMETHEUS_CONFIG:-./cmd/prometheus/prometheus.yml}:/etc/prometheus/prometheus.yml
|
|
|
|
- ${XDG_DATA_HOME:-~/.local/share}/erigon-prometheus:/prometheus
|
2020-08-01 07:39:04 +00:00
|
|
|
|
|
|
|
grafana:
|
2021-06-19 12:38:02 +00:00
|
|
|
image: grafana/grafana:8.0.3
|
2020-08-01 07:39:04 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
volumes:
|
2021-05-26 10:35:39 +00:00
|
|
|
- ${ERIGON_GRAFANA_CONFIG:-./cmd/prometheus/grafana.ini}:/etc/grafana/grafana.ini
|
2020-08-01 07:39:04 +00:00
|
|
|
- ./cmd/prometheus/datasources:/etc/grafana/provisioning/datasources
|
|
|
|
- ./cmd/prometheus/dashboards:/etc/grafana/provisioning/dashboards
|
2021-05-26 10:35:39 +00:00
|
|
|
- ${XDG_DATA_HOME:-~/.local/share}/erigon-grafana:/var/lib/grafana
|
2020-08-01 07:39:04 +00:00
|
|
|
|
|
|
|
rpcdaemon:
|
|
|
|
image: turbo-geth:latest
|
2021-05-26 10:35:39 +00:00
|
|
|
command: rpcdaemon --private.api.addr="erigon:9090" --http.addr="0.0.0.0" --http.vhosts="*" --http.corsdomain="*" --http.api="eth,debug,net"
|
2020-08-01 07:39:04 +00:00
|
|
|
ports:
|
|
|
|
- 8545:8545
|
|
|
|
|