[Solved] Can't uninstall Immich on ZimaOS V1.5.0

Hi everyone,

I’m running ZimaOS V1.5.0 and I installed Immich. Now I want to uninstall it, but the uninstallation process doesn’t work. The three dots keep moving, and the icon stays on the desktop even after I restart the server.

Is there any way to force the uninstallation?

Thanks in advance!

Add images

Perform a reboot and try it again, if you have the same issue try going to ZimaOS terminal and doing docker stop <container name> and then docker rm <container name>. There’s a visual option of doing it via Portainer too as it will also prune unused images, volumes and any leftovers.

Thanks! That solved my issue.

1 Like

Thank you vipper_666 for your help~
Thank you for the feedback from dje33, if there is a similar problem, I hope you can contact us again, we want to see what will cause the uninstall lag, the following are some commands to help you force uninstall the application, just change the app name after grep

docker stop $(docker ps -a | grep immich | awk '{print $1}') && \
docker rm $(docker ps -a | grep immich | awk '{print $1}') && \
docker rmi $(docker images | grep immich | awk '{print $3}')
1 Like