mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-15 15:00:07 +00:00
Update cheatsheets
This commit is contained in:
37
tldr/devpod
Normal file
37
tldr/devpod
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# devpod
|
||||
|
||||
> Launch reproducible development environments using Docker, Kubernetes, or SSH.
|
||||
> More information: <https://devpod.sh/docs/quickstart/devpod-cli/>.
|
||||
|
||||
- Add a provider such as Docker or Kubernetes:
|
||||
|
||||
`devpod provider add {{provider_name}}`
|
||||
|
||||
- List all available providers:
|
||||
|
||||
`devpod provider list-available`
|
||||
|
||||
- Start a workspace from a GitHub repository with a specific IDE:
|
||||
|
||||
`devpod up {{github.com/user/repo}} {{[-i|--ide]}} {{vscode}}`
|
||||
|
||||
- Start a workspace from a local directory:
|
||||
|
||||
`devpod up {{path/to/project}}`
|
||||
|
||||
- Recreate an existing workspace:
|
||||
|
||||
`devpod up {{workspace_name}} {{[-r|--recreate]}}`
|
||||
|
||||
- Reset a workspace to a clean state:
|
||||
|
||||
`devpod up {{workspace_name}} {{[-x|--reset]}}`
|
||||
|
||||
- Add a custom provider from a GitHub repository:
|
||||
|
||||
`devpod provider add {{org/provider-repo}}`
|
||||
Reference in New Issue
Block a user