✏️
Cheatsheet
  • Cheatsheet
  • Development
    • Git
    • Java
  • Others
    • Bash Kung-fu
      • Screen
    • Certificates
    • Cron
    • Docker
    • Logs
  • Hacking-CTF
    • CTF
Powered by GitBook
On this page

Was this helpful?

  1. Others

Docker

Cleaning images

#remove dangling images
docker rmi -f $(docker images -f "dangling=true" -q)

#remove containers
docker rm -f $(docker ps -aq)
PreviousCronNextLogs

Last updated 3 years ago

Was this helpful?