1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 23:46:00 +02:00
This commit is contained in:
depgod 2025-06-06 11:29:31 +03:00 committed by GitHub
commit 6d708c35b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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

@ -0,0 +1,36 @@
# devpod
> Launch reproducible development environments using Docker, Kubernetes, or SSH.
> More information: <https://devpod.sh/docs/quickstart/devpod-cli/>.
- Install the DevPod CLI on Linux:
`curl -L -o devpod https://github.com/loft-sh/devpod/releases/latest/download/devpod-linux-amd64 && sudo install -m0755 devpod /usr/local/bin`
- 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}}`