This repository was archived by the owner on Aug 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -23,4 +23,4 @@ Perform operations on the Coder environments owned by the active user.
23
23
24
24
* [ coder] ( coder.md ) - coder provides a CLI for working with an existing Coder Enterprise installation
25
25
* [ coder envs ls] ( coder_envs_ls.md ) - list all environments owned by the active user
26
- * [ coder envs stop] ( coder_envs_stop.md ) - stop a Coder environment by name
26
+ * [ coder envs stop] ( coder_envs_stop.md ) - stop Coder environments by name
Original file line number Diff line number Diff line change 1
1
## coder envs stop
2
2
3
- stop a Coder environment by name
3
+ stop Coder environments by name
4
4
5
5
### Synopsis
6
6
7
- Stop a Coder environment by name
7
+ Stop Coder environments by name
8
8
9
9
```
10
- coder envs stop [environment_name] [flags]
10
+ coder envs stop [...environment_names] [flags]
11
+ ```
12
+
13
+ ### Examples
14
+
15
+ ```
16
+ coder envs stop front-end-env
17
+ coder envs stop front-end-env backend-env
18
+
19
+ # to stop all of your environments:
20
+ coder envs ls -o json | jq -c '.[].name' | xargs coder envs stop
21
+
11
22
```
12
23
13
24
### Options
You can’t perform that action at this time.
0 commit comments