# Reinstallation

### **Step 1: List and Identify Docker Components**

1. **Open Terminal** (or PowerShell on Windows).
2. **Find Existing PANDORA Containers**:
   * Type `docker ps -a` and press Enter. This will list all containers.
3. **Find Existing PANDORA Images**:
   * Type `docker images` and press Enter. This will list all images.
4. **Find Existing PANDORA Volumes**:
   * Type `docker volume ls` and press Enter. This will list all volumes.

### **Step 2: Remove Old PANDORA Components**

1. **Stop and Remove Containers**:
   * Stop PANDORA:

     ```bash
     docker stop <CONTAINER_ID>
     ```
   * Remove the container (if needed):

     ```bash
     docker rm <CONTAINER_ID>
     ```
2. **Remove Docker Images**:
   * Remove the image:

     ```bash
     docker rmi <IMAGE_ID>
     ```
3. **Remove Docker Volumes**:
   * Remove PANDORA volumes:

     ```bash
     docker volume rm genular_frontend_latest genular_backend_latest genular_data_latest
     ```

### **Step 3: Reinstall**

After removing all previous components, follow the [**Installation**](https://atomic-lab.gitbook.io/pandora/getting-started/quickstart/installation) steps to install a clean version of PANDORA.
