Removing blockstack completly from system for clean install

Does anyone know a good way to make sure Blockstack is completley purged from my machine so I can try again with a clean install? I’m running Ubuntu 16.04.

Hmmm
Very interesting qwestion

  1. remove ~/.blockstack folder
  2. remove all Docker images and containers
  3. If you want to remove the seed as well, remove the localStorage for localhost:8888 in your browser
3 Likes

Awesome thank you skybach

There is also a /tmp/.blockstack folder that might contain a lock file

what are the commands for step 2?

do you have other images and containers that do not belong to Blockstack?
If not, you can issue the following to remove all

docker rm $(docker ps -aq)
docker rmi $(docker images -aq)

here is a quick reference I found on removing Docker Images https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes