DEV Community

Discussion on: 10 docker-compose and docker commands that are useful for active development

Collapse
 
dploeger profile image
Dennis Ploeger

Additionally,

docker system prune --volumes

will also remove old volumes, that aren't connected to any currently running container. However, be cautious as this might lead to data loss.

Collapse
 
aduranil profile image
Lina Rudashevski

nice! tks for sharing this!