monitoring/host-exporter-compose.yml (24 lines of code) (raw):

# Copyright (c) Facebook, Inc. and its affiliates. # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. version: '3' # on each host, run docker-compose -f host-exporter-compose.yml up -d services: cadvisor: image: google/cadvisor:v0.30.2 restart: always ports: - 8080:8080 volumes: - /:/rootfs:ro - /var/run:/var/run:rw - /sys:/sys:ro - /var/lib/docker/:/var/lib/docker:ro - /dev/disk/:/dev/disk:ro privileged: true node-exporter: image: prom/node-exporter:v0.16.0 restart: always ports: - 9100:9100 volumes: - /proc:/host/proc:ro - /sys:/host/sys:ro - /:/rootfs:ro privileged: true