From 2945699e8083f4cd84e3a0ef41b741358e830107 Mon Sep 17 00:00:00 2001 From: Aaron Feledy Date: Wed, 14 Aug 2024 10:06:09 -0400 Subject: [PATCH] allow specifying services to destroy --- docs/destroy.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/destroy.md b/docs/destroy.md index 1debb1c5d..43ae147c9 100644 --- a/docs/destroy.md +++ b/docs/destroy.md @@ -27,6 +27,7 @@ lando destroy [--yes] --debug Shows debug output [boolean] --help Shows lando or delegated command help if applicable [boolean] --verbose, -v Runs with extra verbosity [count] +--service, -s Destroys only the specified services [array] --yes, -y Answers yes to prompts [boolean] [default: false] ``` @@ -39,6 +40,9 @@ lando destroy # Non-interactive destruction lando destroy -y +# Destroy only the database service +lando destroy --service database + # Destroy with debug output lando destroy --debug