doctl-apps: add page (#7501)

feature/windows-fix-syntax-2
cpetrella-sketch 2021-12-16 06:06:29 -05:00 committed by GitHub
parent b205ef3b38
commit aa4932c7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
# doctl apps
> Used to 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}}`