Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# First, shutdown everything that's running in Docker
docker stop $(docker ps -a -q)

# Now, delete all Docker containers from your machine
docker rm $(docker ps -a -q)

# Finally,Remove remove all Docker volumes (data) from your machine
docker volume rm $(docker volume ls -q)

# Finally, you may delete the "DSpace" and "dspace-angular" folders if you no longer wish to use them.
# You may also uninstall Docker Desktop as needed, etc.