Advertisement
pilasguru

cadvisor

Jun 25th, 2019
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ```
  2. docker run \
  3. --volume=/:/rootfs:ro \
  4. --volume=/var/run:/var/run:ro \
  5. --volume=/sys:/sys:ro \
  6. --volume=/var/lib/docker/:/var/lib/docker:ro \
  7. --volume=/dev/disk/:/dev/disk:ro \
  8. --publish=8080:8080 \
  9. --detach=true \
  10. --name=cadvisor \
  11. --rm \
  12. google/cadvisor:latest
  13. ```
  14.  
  15. https://github.com/google/cadvisor
  16.  
  17. http://docker-host:8080/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement