46
devs
5y

Don’t forget to clean up unused docker volumes once in a while...

Comments
  • 0
  • 2
    At work I just have an alias that runs "docker-compose down && docker volume prune"
  • 5
    Everybody complains that node downloads the internet, but docker user be like bitch please.
  • 1
    docker image rm $(docker image ls -q)
  • 0
    @Froot this is not images; I removed them before. This is purely volumes
  • 1
    Ah, sry, misread

    docker volume rm $(docker volume ls -q)

    🤣
Add Comment