Uninstalling LeakLens
Stopping LeakLens
Section titled “Stopping LeakLens”To stop all containers without removing data:
docker compose downFull Removal
Section titled “Full Removal”-
Stop and remove all containers, networks, and volumes:
Terminal window docker compose down -v -
Remove the cloned directory:
Terminal window cd .. && rm -rf LeakLens
Keeping data, removing containers
Section titled “Keeping data, removing containers”If you want to remove the containers but keep the MariaDB data on disk, stop without the -v flag and back up the data/mariadb directory:
docker compose downcp -r data/mariadb ~/leaklens-backupYou can restore by placing the backup back at data/mariadb before running docker compose up -d again.