advancedTop 100 Interview Questions
What's the difference between `docker compose down` and `docker compose down -v`?
Plain `down` stops and removes containers and the project's network but leaves named volumes intact by default, preserving data. Adding `-v` additionally removes named volumes, permanently deleting any data stored in them.
Ready to master this question?
Generate a complete walkthrough — background, the full answer in plain language, a working code example explained line by line, a real-world scenario, common mistakes, and how this same question gets asked in different ways.
Sign in to generate a response