schon/scripts/Unix/uninstall.sh
Egor fureunoir Gorbunov b92e7e28f1 Features: 1) Add new email content translations for ru_RU, zh_Hans, and ro_RO locales; 2) Update "balance deposit" and general email-related translations across multiple languages;
Fixes: 1) Correct inconsistent formatting in translation strings; 2) Fix placeholders in email templates for better accuracy;

Extra: Update `.gitignore` to include `.env` file exclusion.
2025-06-22 20:18:19 +03:00

23 lines
593 B
Bash

#!/usr/bin/env bash
set -euo pipefail
source ./scripts/Unix/starter.sh
echo "Shutting down..."
docker compose down
echo "Services were shut down successfully!"
echo "Removing volumes..."
docker volume rm -f evibes_prometheus-data
docker volume rm -f evibes_es-data
echo "Volumes were removed successfully!"
echo "Cleaning up unused Docker data..."
docker system prune -a -f --volumes
echo "Unused Docker data cleaned successfully!"
echo "Removing related files..."
rm -rf ./services_data ./media ./static
echo "Related files removed successfully!"
echo "Bye-bye, hope you return later!"