mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-10 08:08:16 -05:00
20 lines
463 B
YAML
20 lines
463 B
YAML
version: '2'
|
|
services:
|
|
prometheus:
|
|
image: prom/prometheus:v2.9.2
|
|
depends_on:
|
|
- lodestar
|
|
volumes:
|
|
- ./prometheus.yml:/etc/prometheus/prometheus.yml
|
|
ports:
|
|
- '9090:9090'
|
|
lodestar:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
volumes:
|
|
- ./:/root/lodestar
|
|
- node_modules:/root/lodestar/node_modules
|
|
volumes:
|
|
node_modules:
|