2020-02-13 21:48:38 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-11-07 22:21:36 +00:00
|
|
|
echo "Uninstall OneUptime. This will remove OneUptime from this server"
|
|
|
|
read -r -p "Do you want to uninstall OneUptime? [y/N] " response
|
|
|
|
if [[ "$response" =~ ^([yY][eE][sS]|[yY])+$ ]]
|
|
|
|
then
|
|
|
|
echo "OK!"
|
|
|
|
else
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
echo "Uninstalling OneUptime..."
|
2022-12-07 07:49:18 +00:00
|
|
|
sudo docker compose down
|
|
|
|
sudo docker compose rm
|
2022-11-07 22:21:36 +00:00
|
|
|
echo "OneUptime uninstalled."
|
|
|
|
echo "We would like to hear your feedback to make this product better for you and for other users, please email us at hello@oneuptime.com."
|
|
|
|
echo " - If you notice a bug, we will fix it for you."
|
|
|
|
echo " - If you need a feature, we will add that to the roadmap and let you know the estimated time to ship."
|
|
|
|
echo "We would love to hear your feedback. Email: hello@oneuptime.com"
|