1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 21:15:32 +02:00

devpod: add page (#16774)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
depgod 2025-06-10 15:50:33 +05:30 committed by GitHub
parent d64f551229
commit 5ea5df1cc9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

32
pages/common/devpod.md Normal file
View file

@ -0,0 +1,32 @@
# 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}}`