2022-09-19 19:54:26 +00:00
|
|
|
version: "3.7"
|
|
|
|
|
2020-09-02 22:21:17 +00:00
|
|
|
volumes:
|
|
|
|
grafana:
|
|
|
|
prometheus:
|
2022-09-19 19:54:26 +00:00
|
|
|
|
|
|
|
x-log-config: &log-config
|
|
|
|
logging:
|
|
|
|
driver: json-file
|
|
|
|
options:
|
|
|
|
max-size: "50m"
|
|
|
|
max-file: "20"
|
|
|
|
|
2020-07-07 04:06:03 +00:00
|
|
|
services:
|
2020-09-02 22:21:17 +00:00
|
|
|
prometheus:
|
2022-09-19 19:54:26 +00:00
|
|
|
image: prom/prometheus:v2.36.0
|
2020-07-07 04:06:03 +00:00
|
|
|
command:
|
2022-09-19 19:54:26 +00:00
|
|
|
- --config.file=/etc/prometheus/config.yaml
|
2020-09-02 22:21:17 +00:00
|
|
|
- --storage.tsdb.path=/prometheus
|
2021-04-16 15:50:38 +00:00
|
|
|
- --storage.tsdb.retention.time=360d
|
2022-09-22 18:42:08 +00:00
|
|
|
container_name: wownerod_prometheus
|
2022-09-19 19:54:26 +00:00
|
|
|
restart: unless-stopped
|
2022-09-22 18:42:08 +00:00
|
|
|
ports:
|
|
|
|
- 127.0.0.1:9090:9090
|
2020-09-02 22:21:17 +00:00
|
|
|
volumes:
|
|
|
|
- prometheus:/prometheus
|
2022-09-19 19:54:26 +00:00
|
|
|
- ./files/prometheus/config.yaml:/etc/prometheus/config.yaml:ro
|
|
|
|
<<: *log-config
|
2020-09-02 22:21:17 +00:00
|
|
|
grafana:
|
2022-09-19 19:54:26 +00:00
|
|
|
user: "1000"
|
|
|
|
command:
|
|
|
|
- -config=/etc/grafana/grafana.ini
|
2022-09-22 18:42:08 +00:00
|
|
|
container_name: wownerod_grafana
|
2020-11-15 16:55:54 +00:00
|
|
|
restart: unless-stopped
|
2022-09-19 19:54:26 +00:00
|
|
|
image: grafana/grafana:8.5.4
|
2020-07-07 04:06:03 +00:00
|
|
|
ports:
|
2020-09-02 22:21:17 +00:00
|
|
|
- 127.0.0.1:3000:3000
|
2022-09-19 19:54:26 +00:00
|
|
|
volumes:
|
|
|
|
- grafana:/var/lib/grafana
|
|
|
|
- ./files/grafana/grafana.ini:/etc/grafana/grafana.ini:ro
|
|
|
|
- ./files/grafana/provisioning:/etc/grafana/provisioning:ro
|
|
|
|
- ./files/grafana/dashboards:/var/lib/grafana/dashboards:ro
|
2020-09-02 22:21:17 +00:00
|
|
|
environment:
|
|
|
|
HOSTNAME: grafana
|
|
|
|
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"
|
2021-07-04 07:56:36 +00:00
|
|
|
GF_AUTH_ANONYMOUS_ENABLED: "${GF_AUTH_ANONYMOUS_ENABLED:-true}"
|
|
|
|
GF_AUTH_BASIC_ENABLED: "${GF_AUTH_BASIC_ENABLED:-false}"
|
|
|
|
GF_AUTH_DISABLE_LOGIN_FORM: "${GF_AUTH_DISABLE_LOGIN_FORM:-true}"
|
|
|
|
GF_SECURITY_ADMIN_PASSWORD: "${GF_SECURITY_ADMIN_PASSWORD}"
|
|
|
|
GF_SECURITY_ADMIN_USER: "${GF_SECURITY_ADMIN_USER}"
|
2022-09-19 19:54:26 +00:00
|
|
|
<<: *log-config
|
2020-09-02 22:21:17 +00:00
|
|
|
exporter:
|
2022-09-19 19:54:26 +00:00
|
|
|
command:
|
|
|
|
- --monero-addr=http://wownerod:34570
|
2022-09-22 18:42:08 +00:00
|
|
|
container_name: wownerod_exporter
|
2022-09-19 19:54:26 +00:00
|
|
|
restart: unless-stopped
|
2022-09-22 18:42:08 +00:00
|
|
|
ports:
|
|
|
|
- 127.0.0.1:9000:9000
|
2020-09-02 22:21:17 +00:00
|
|
|
build:
|
2020-12-31 18:45:31 +00:00
|
|
|
context: dockerfiles
|
|
|
|
dockerfile: wownerod_exporter
|
2022-09-19 19:54:26 +00:00
|
|
|
<<: *log-config
|
2020-07-07 04:06:03 +00:00
|
|
|
wownerod:
|
2022-09-22 18:42:08 +00:00
|
|
|
container_name: wownerod_daemon
|
2021-07-12 22:06:06 +00:00
|
|
|
build:
|
|
|
|
context: dockerfiles
|
|
|
|
dockerfile: wownerod_nocompile
|
2020-11-15 16:55:54 +00:00
|
|
|
restart: unless-stopped
|
2020-07-07 04:06:03 +00:00
|
|
|
volumes:
|
2021-06-30 18:33:03 +00:00
|
|
|
- ./data:/data
|
2020-07-07 04:06:03 +00:00
|
|
|
command:
|
2021-02-26 09:49:53 +00:00
|
|
|
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
|
2020-07-07 05:55:44 +00:00
|
|
|
ports:
|
2021-06-30 18:33:03 +00:00
|
|
|
- 0.0.0.0:34567:34567
|
|
|
|
- 0.0.0.0:34568:34568
|
2021-05-17 21:01:48 +00:00
|
|
|
- 127.0.0.1:34570:34570
|
2022-09-19 19:54:26 +00:00
|
|
|
<<: *log-config
|