You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `region` | Build data storage region (default: "us-east-1") |
428
+
| `cache-storage-policy`| Build cache to keep per architecture in GB (default: 50) |
429
+
| `token` | Depot API token |
427
430
428
431
#### `depot projects list`
429
432
@@ -465,6 +468,68 @@ Remove any saved login defails from your local machine.
465
468
depot logout
466
469
```
467
470
471
+
### `depot org`
472
+
473
+
Manage Depot organizations. The `org` command consists of subcommands for each operation.
474
+
475
+
#### `depot org list`
476
+
477
+
Display an interactive listing of organizations that you can access. The command shows organization IDs and names in a table format.
478
+
479
+
To exit type `q` or `ctrl+c`
480
+
481
+
**Example**
482
+
483
+
```shell
484
+
depot org list
485
+
```
486
+
487
+
**Example**
488
+
489
+
The list command can output organization information to stdout with the `--output` option. It supports `json` and `csv`.
490
+
491
+
Output organizations in JSON format:
492
+
493
+
```shell
494
+
depot org list --output json
495
+
```
496
+
497
+
Output organizations in CSV format:
498
+
499
+
```shell
500
+
depot org list --output csv
501
+
```
502
+
503
+
#### `depot org show`
504
+
505
+
Show the current organization ID that is set in your global Depot settings.
506
+
507
+
**Example**
508
+
509
+
```shell
510
+
depot org show
511
+
```
512
+
513
+
#### `depot org switch`
514
+
515
+
Set the current organization in global Depot settings. You can either specify an organization ID as an argument or run the command interactively to select from available organizations.
516
+
517
+
**Example**
518
+
519
+
Switch to a specific organization by ID:
520
+
521
+
```shell
522
+
depot org switch your-org-id
523
+
```
524
+
525
+
**Example**
526
+
527
+
Switch to an organization interactively:
528
+
529
+
```shell
530
+
depot org switch
531
+
```
532
+
468
533
### `depot pull`
469
534
470
535
Pull an image from the Depot registry to your local Docker daemon.
0 commit comments