Show server statistics like CPU, RAM and Docker container usage
Statistics
Server
Show server statistics
htop
Docker
Show running Docker containers
docker ps
Show all containers (stopped and running)
docker ps -a
Docker container CPU usage
ctop: https://github.com/bcicen/ctop
docker run --rm -ti \
--name=ctop \
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
quay.io/vektorlab/ctop:latest
No Comments