Initializing help system before first use

Wiping Insight Data

If you want to start over with a clean deployment, you can wipe all of your stored data before redeploying.
Because Docker volumes are separate from containers, the data stored there is normally preserved even if you remove and redeploy the containers. If you want to start over with a clean deployment of one or more components, you must wipe the appropriate volumes before redeploying. Most Insight data is stored in the following volumes:
  • Insight with file system persistence: insight-local-filesystem_data
  • Insight with MySQL database persistence: insight-local-mysql-db_data
Note: If you want to completely remove all containers and volumes defined in the docker-compose.yaml file, you can use the docker compose down --volumes command. This would include the Workbench container and volumes. For more information, see the Docker documentation.
To wipe your stored data, follow these steps:
  1. If the containers are currently running, stop them with Ctrl+C or the docker compose down command.
  2. (Optional) Back up the data persistence volume.
    For more information about backing up volumes, see the Docker documentation.
  3. Run the docker rm command to delete the container to which the data persistence volume is mounted.
    • If you are using file system persistence, delete the server container, as in this example:
      docker rm insight-local-filesystem-server-1
    • If you are using MySQL database persistence, delete the database container, as in this example:
      docker rm insight-local-mysql-db-1
  4. Run the docker volume rm command to delete the data persistence volume.
    • For file system persistence:
      docker volume rm insight-local-filesystem_data
    • For MySQL database persistence:
      docker volume rm insight-local-mysql_db_data
You can now run docker compose up to redeploy and restart the containers. New data persistence volumes will be created and mounted.

© 2001-2025 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.