Docker basics

Docker basics

January 7, 2025

  1. Staging system with lots of test deployments running out of disk space:

crontab -e

then

0 * * * * docker system prune -a --volumes

Cleans up all unused resources once an hour

  1. List processes:

Same as htop:

docker stats

Same as ps:

docker ps
built withbuildery