Reinstallation
If you need to reinstall PANDORA for any reason, please follow these steps carefully to remove the old version and start fresh. Note: This will delete any previous data and settings.
Step 1: List and Identify Docker Components
Open Terminal (or PowerShell on Windows).
Find Existing PANDORA Containers:
Type
docker ps -a
and press Enter. This will list all containers.
Find Existing PANDORA Images:
Type
docker images
and press Enter. This will list all images.
Find Existing PANDORA Volumes:
Type
docker volume ls
and press Enter. This will list all volumes.
Step 2: Remove Old PANDORA Components
Stop and Remove Containers:
Stop PANDORA:
docker stop <CONTAINER_ID>
Remove the container (if needed):
docker rm <CONTAINER_ID>
Remove Docker Images:
Remove the image:
docker rmi <IMAGE_ID>
Remove Docker Volumes:
Remove PANDORA volumes:
docker volume rm genular_frontend_latest genular_backend_latest genular_data_latest
Step 3: Reinstall
After removing all previous components, follow the Installation steps to install a clean version of PANDORA.
Last updated
Was this helpful?