LinuxCommandLibrary

doctl-apps

Used to manage digitalocean apps.

TLDR

Create an app

$ doctl apps create
copy


Create a deployment for a specific app
$ doctl apps create-deployment [app_id]
copy


Delete an app interactively
$ doctl apps delete [app_id]
copy


Get an app
$ doctl apps get
copy


List all apps
$ doctl apps list
copy


List all deployments from a specific app
$ doctl apps list-deployments [app_id]
copy


Get logs from a specific app
$ doctl apps logs [app_id]
copy


Update a specific app with a given app spec
$ doctl apps update [app_id] --spec [path/to/spec.yml]
copy

Copied to clipboard