Wonach suchst Du?
What are you looking for?

How do I reset the database using docker?

Overview

Sometimes when you run into a dead end with your test environment you may want to start from scratch. This shows you how to do it.

BEWARE: ALL DATA IS LOST if you do not backup!

Reset Database

docker-compose down
rm -rf ./volumes/db 
docker-compose build
docker-compose up -d

View source file on GitHub.com