You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

68 lines
2.2 KiB

version: '3'
volumes:
grafana:
prometheus:
services:
prometheus:
image: prom/prometheus:v2.18.0
container_name: wownero_prometheus
restart: unless-stopped
command:
- --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
- --web.enable-admin-api
- --storage.tsdb.retention.time=360d
volumes:
- prometheus:/prometheus
- ./files/prometheus:/etc/prometheus
ports:
- 127.0.0.1:9090:9090
grafana:
image: grafana/grafana:6.5.0
container_name: wownero_grafana
restart: unless-stopped
ports:
- 127.0.0.1:3000:3000
environment:
HOSTNAME: grafana
GF_SECURITY_ADMIN_USER: admin
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_PASSWORD}
GF_SERVER_ROOT_URL: ${GRAFANA_URL}
GF_ANALYTICS_REPORTING_ENABLED: "false"
GF_ANALYTICS_CHECK_FOR_UPDATES: "false"
GF_USERS_ALLOW_SIGN_UP: "false"
GF_USERS_ALLOW_ORG_CREATE: "false"
GF_LOG_LEVEL: "debug"
volumes:
- ./files/grafana/dashboards.yaml:/etc/grafana/provisioning/dashboards/default.yaml:ro
- ./files/grafana/prometheus.yaml:/etc/grafana/provisioning/datasources/prometheus.yaml:ro
- ./files/grafana/daemon_metrics.json:/var/lib/grafana/dashboards/daemon_metrics.json:ro
- grafana:/var/lib/grafana
exporter:
container_name: wownero_exporter
build:
context: dockerfiles
dockerfile: wownerod_exporter
restart: unless-stopped
environment:
DAEMON_HOST: http://wownerod:34570
PORT: 8080
ports:
- 127.0.0.1:8080:8080
wownerod:
container_name: wownero_daemon
build:
context: dockerfiles
dockerfile: wownerod_nocompile
restart: unless-stopped
volumes:
- ./data:/data
command:
wownerod --data-dir=/data --rpc-bind-ip=0.0.0.0 --rpc-restricted-bind-ip=0.0.0.0 --confirm-external-bind --non-interactive --public-node --rpc-restricted-bind-port=34568 --rpc-bind-port=34570 --log-level=0
ports:
- 0.0.0.0:34567:34567
- 0.0.0.0:34568:34568
- 127.0.0.1:34570:34570