Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
doctl-apps Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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}}`