From aa4932c7a824e7129111e094f5ba406d321903a9 Mon Sep 17 00:00:00 2001 From: cpetrella-sketch <78937129+cpetrella-sketch@users.noreply.github.com> Date: Thu, 16 Dec 2021 06:06:29 -0500 Subject: [PATCH] doctl-apps: add page (#7501) --- pages/common/doctl-apps.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/doctl-apps.md diff --git a/pages/common/doctl-apps.md b/pages/common/doctl-apps.md new file mode 100644 index 000000000..b1b298ed9 --- /dev/null +++ b/pages/common/doctl-apps.md @@ -0,0 +1,36 @@ +# doctl apps + +> Used to manage digitalocean apps. +> More information: . + +- 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}}`