Home > Enterprise >  How to uninstall label studio?
How to uninstall label studio?

Time:12-08

I accidentally installed label studio in a wrong directory using the follow command:

docker run -it -p 8080:8080 -v `pwd`/mydata:/label-studio/data heartexlabs/label-studio:latest

Is there any way to uninstall or remove it?

CodePudding user response:

Did pwd have anything else except for what the image installed? If not, simply delete the container and the contents that was created on your main filesystem.

If you did have something in the pwd and the contents mixed, this is a bit trickier. You can create an empty directory, then run the image in the empty directory. After finishing you can see what directories and files got created and compare with the pwd one by one.

  • Related