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.
25 lines
No EOL
1 KiB
PowerShell
25 lines
No EOL
1 KiB
PowerShell
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
.\scripts\Windows\starter.ps1
|
|
|
|
Write-Host "Shutting down..." -ForegroundColor Magenta
|
|
docker compose down
|
|
Write-Host "Services were shut down successfully!" -ForegroundColor Green
|
|
|
|
Write-Host "Removing volumes..." -ForegroundColor Magenta
|
|
docker volume remove -f evibes_prometheus-data
|
|
docker volume remove -f evibes_es-data
|
|
Write-Host "Volumes were removed successfully!" -ForegroundColor Green
|
|
|
|
Write-Host "Cleaning up unused Docker data..." -ForegroundColor Magenta
|
|
docker system prune -a -f --volumes
|
|
Write-Host "Unused Docker data cleaned successfully!" -ForegroundColor Green
|
|
|
|
Write-Host "Removing related files..." -ForegroundColor Magenta
|
|
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue ./services_data
|
|
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue ./media
|
|
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue ./static
|
|
Write-Host "Related files removed successfully!" -ForegroundColor Green
|
|
|
|
Write-Host "Bye-bye, hope you return later!" -ForegroundColor Red |