Skip to content

Files

Latest commit

 

History

History

cadvisor

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

cadvisor

cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers.

docker-compose.yml

cadvisor:
  image: vimagick/cadvisor
  ports:
    - "8080:8080"
  volumes:
    - /:/rootfs:ro
    - /var/run:/var/run:rw
    - /sys:/sys:ro
    - /var/lib/docker/:/var/lib/docker:ro
  restart: always