Created
April 11, 2019 11:38
-
-
Save andreafspeziale/1e45e6fb60cb87a3654fccad1ce5c4a4 to your computer and use it in GitHub Desktop.
Basic EOS node cleaner based on the bootstrap script using Docker.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Stopping container.." | |
docker stop keosd | |
docker stop nodeos | |
echo "Removing container.." | |
docker rm keosd | |
docker rm nodeos | |
echo "Removing network.." | |
docker network rm eosdev | |
echo "Removing volumes" | |
docker volume prune | |
rm -r /tmp/eosio | |
rm userkeys | |
rm defaultmaster |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment