1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/doctl-apps.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

643 B

doctl apps

Manage DigitalOcean apps. More information: https://docs.digitalocean.com/reference/doctl/reference/apps.

  • Create an app:

doctl apps create

  • Create a deployment for a specific app:

doctl apps create-deployment {{app_id}}

  • Delete an app interactively:

doctl apps delete {{app_id}}

  • Get an app:

doctl apps get

  • List all apps:

doctl apps list

  • List all deployments from a specific app:

doctl apps list-deployments {{app_id}}

  • Get logs from a specific app:

doctl apps logs {{app_id}}

  • Update a specific app with a given app spec:

doctl apps update {{app_id}} --spec {{path/to/spec.yml}}