Uninstalling
How to remove SilentSuite from your server.
Stop Without Deleting Data
If you only want to stop the services but keep your data for later:
bash
docker compose downThe data volumes will persist. Run docker compose up -d to start again.
Complete Removal
To completely remove SilentSuite and all its data:
bash
# Stop and remove all containers and volumes
docker compose down -v
# Remove the Docker images
docker rmi ghcr.io/silent-suite/silentsuite-server:latest postgres:16-alpine
# Remove the cloned repository
cd ..
rm -rf silentsuiteWarning:
docker compose down -vdeletes all data volumes. This is irreversible. Back up first if you want to keep your data.