Uninstalling
Make sure Companion Home is completely stopped and then remove the cihome directory.
cd /opt/cihome && docker compose down
cd ..
sudo rm -rf cihomeIf you want to purge every Docker image/volume/network created too you can run this command:
docker volume prune
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker images -a -q)Last updated on