To uninstall Maximo® Visual Inspection Edge, stop deployed models and remove running containers, the root installation directory, and the deployed
Docker images for the current release.
Procedure
-
Remove the service containers by running the following command:
docker rm -f vision-edge-controller vision-edge-cme vision-edge-dle
This command also stops any locally deployed models.
-
Remove the root installation directory.
For example, if the application is installed in the /opt/ibm/vision-edge
directory, run the following command:
rm -rf /opt/ibm/vision-edge
-
To recover disk space, run the
docker rmi
command.
This command removes the deployed Docker images for the current release.
For example, to remove all deployed images for the 8.4.0
release, run the following command:
for deploy_img in $(docker images --format '{{.Repository}}:{{.Tag}}' | egrep 'vision-edge-[a-z]+:8.4.0') ; do echo ${deploy_img} ; echo "Purged image ${deploy_img}." ; done