Forrest logo
back to the doctl tool

doctl-apps:tldr:789f7

doctl-apps: Delete an app interactively.
$ doctl apps delete ${app_id}
try on your machine

The command doctl apps delete ${app_id} is a command line instruction using the DigitalOcean Command Line Interface (doctl) tool to delete an app.

Here is a breakdown of each component of the command:

  • doctl: Refers to the DigitalOcean command-line tool.
  • apps: Specifies that the action will be related to apps.
  • delete: Specifies the action to be carried out, which is deleting an app.
  • ${app_id}: A placeholder for the specific ID of the app to be deleted. The actual app ID should be substituted in place of ${app_id}.

In summary, this command instructs the doctl tool to delete the specific app with the provided app ID.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the doctl tool