👌 IMPROVE: node_exporter

This commit is contained in:
2024-05-12 18:04:07 +00:00
parent b4d98d9b17
commit aa12a7fdae

View File

@@ -46,6 +46,21 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: teamcity-server
node_exporter:
image: quay.io/prometheus/node-exporter:latest
container_name: node_exporter
network_mode: host
pid: host
restart: unless-stopped
command:
- "--path.procfs=/host/proc"
- "--path.sysfs=/host/sys"
- "--path.rootfs=/host"
- "--collector.filesystem.ignored-mount-points=^/(sys|proc|dev)($$|/)"
volumes:
- "/proc:/host/proc:ro"
- "/sys:/host/sys:ro"
- "/:/host:ro,rslave"
https_portal:
container_name: https_portal
image: "steveltn/https-portal:1.23.0"