OTee Docker Commands
Quick reference
Check status
docker ps # running containers
docker ps -a # all containers, including stopped ones
docker images # installed images
docker volume ls # volumes
docker logs <container> --tail 50 # last 50 log lines
docker logs <container> --tail 50 -f # follow logs liveStart, stop, restart
docker compose -p <project> up -d # start the stack (detached)
docker compose -p <project> down # stop + remove containers & network
docker compose -p <project> restart # restart in placeRun Docker without sudo
Full clean wipe (for a fresh install)
Install Docker (Debian-based devices)
Troubleshooting a container that won't start
Last updated