Uninstalling Connectware (Docker)

Uninstall Connectware from Docker.

Uninstalling Connectware removes Connectware from your system, including all containers, volumes, and service configurations.

  1. Switch to the root user and navigate to your installation directory:

sudo -i
cd <installation-directory>
  1. Stop and remove all Docker containers, networks, and volumes associated with Connectware:

docker compose down -v
  1. Navigate up one directory level and delete the installation directory:

cd ..
rm -R <installation-directory>

If you have installed Connectware via systemd, proceed with the next steps.

  1. systemd installations only: Disable the Connectware service.

systemctl disable connectware
  1. Remove the service file:

rm /etc/systemd/system/connectware.service

Last updated

Was this helpful?