Hi,
I’m trying to reset my database to initial state but even after uninstall and reinstall devilbox I still have the same DB setup.
Anyone can help?
Thanks
Hi,
I’m trying to reset my database to initial state but even after uninstall and reinstall devilbox I still have the same DB setup.
Anyone can help?
Thanks
You have to delete the docker volume for MySQL. Example from my machine:
$ docker volume list | grep mysql
local devilbox2_devilbox-mysql-5.5
local devilbox2_devilbox-mysql-5.6
local devilbox2_devilbox-mysql-5.7
local devilbox2_devilbox-mysql-8.0
$ docker volume rm devilbox2_devilbox-mysql-5.5
devilbox2_devilbox-mysql-5.5
Thank you @cytopia. It solved my problem.