added node_exporter to stack

This commit is contained in:
Bertrand Lanson 2023-06-01 19:27:07 +02:00
parent d75c978d3f
commit 0c21da9a40
2 changed files with 21 additions and 1 deletions

View File

@ -9,6 +9,7 @@ deploy_adguard_enable_dot: false
deploy_adguard_enable_doq: false
deploy_adguard_enable_dnscrypt: false
deploy_adguard_start_service: false
deploy_adguard_node_exporter: false
deploy_adguard_virtual_ip:
enable: false
interface: eth0

View File

@ -12,8 +12,8 @@ services:
STATE: "BACKUP"
cap_add:
- NET_ADMIN
{% endif %}
{% endif %}
adguard:
image: adguard/adguardhome:latest
ports:
@ -50,6 +50,25 @@ services:
- data:/opt/adguardhome/work
networks:
- internal
{% if deploy_adguard_node_exporter %}
node_exporter:
image: ebrianne/adguard-exporter:latest
environment:
- adguard_protocol=http
- adguard_hostname=192.168.10.252
- adguard_username=admin
- adguard_password=/run/secrets/my-adguard-pass
- adguard_port= #optional
- server_port=9617
- interval=10s
- log_limit=10000
- password_from_file=true
ports:
- "9617:9617"
networks:
- internal
{% endif %}
networks:
internal: