For the complete documentation index, see llms.txt. This page is also available as Markdown.

1. Uninstall CheckCle System

CheckCle uninstallation guide with explanations and extra cleanup steps in case you want to fully remove everything related to it:


Step 1: Stop and Remove the Running Container

docker stop checkcle
docker rm checkcle
  • docker stop β†’ gracefully stops the container.

  • docker rm β†’ removes the container definition (but not the image yet).


Step 2: Remove the CheckCle Image

docker rmi operacle/checkcle:latest
  • Removes the Docker image from your local system.

  • If you used another version or tag (e.g., operacle/checkcle:v1.0.0), adjust accordingly.

  • If multiple images exist, list them first:

    docker images | grep checkcle

Step 3: (Optional) Remove Volumes or Data Folders

If you mounted local folders (e.g., PocketBase data or logs), you can clean them up manually. For example:

⚠️ Careful: This will permanently delete all data (databases, logs, configurations).

If Docker volumes were created:


Step 4: Remove Networks (Optional)

If you created a custom Docker network for CheckCle:


Step 5: Verify Cleanup

Check if anything related to CheckCle is still running:

If all return empty, CheckCle is fully removed.

Last updated