zkt25/z1/remove-app.sh
2025-03-14 20:38:37 +01:00

12 lines
357 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

echo "Removing app..."
# Останавливаем и удаляем все контейнеры,
# а также volume (db_data), образы локальные (если надо)
docker-compose down -v --rmi local
# Если хотите удалить и внешнюю сеть:
docker network rm app-net || true
echo "App removed completely."