Skip to content
This repository was archived by the owner on Mar 18, 2020. It is now read-only.

Latest commit

 

History

History
41 lines (28 loc) · 1.16 KB

File metadata and controls

41 lines (28 loc) · 1.16 KB

netdata - real-time charts for system monitoring

These are docker images for netdata based on the official Debian GNU/Linux or Alpine Linux packages.

Tagged Docker Images

Images are tagged according to the installed netdata version.

Usage

docker run

$ docker run -it -v /sys:/host/sys:ro -v /proc:/host/proc:ro -p 19999:19999 ibhde/netdata

docker-compose

# docker-compose.yml example
version: '3'
services:
  netdata:
    image: ibhde/netdata:1.6.0
    network_mode: host
    hostname: MY-HOSTNAME
    restart: always
    volumes:
      - /sys:/host/sys:ro
      - /proc:/host/proc:ro