wiki

Help! I'm trapped in a wiki!

Site Tools


programs:docker

Table of Contents

docker

Manage containers (shared kernel, separate userland)

Monitoring

docker ps -a

  • list all (stopped) containers

docker stats

  • live mem, cpu, net/block IO, pids

docker logs -n 100 --follow CONTAINER

  • tail -f for containers

docker top CONTAINER

  • see procs inside a container

Cleanup

docker image prune -a

  • removes images not used by any container
  • most of the time all you really need
programs/docker.txt · Last modified: by 127.0.0.1