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
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,13 @@ devcontainer-cli is the start of a CLI to improve the experience of working with
4
4
5
5
**Status: this is a pet project that I've been experimenting with. It is not supported and you should expect bugs :-)**
6
6
7
+
**NOTE: To avoid conflicts with the [official CLI](https://github.com/devcontainers/cli) the binary for this project has been renamed to `devcontainerx`**
8
+
7
9
## Installation
8
10
9
11
Head to the [latest release page](https://github.com/stuartleeks/devcontainer-cli/releases/latest) and download the archive for your platform.
10
12
11
-
Extract `devcontainer` from the archive and place in a folder in your `PATH`.
13
+
Extract `devcontainerx` from the archive and place in a folder in your `PATH`.
12
14
13
15
You can also install using `homebrew` with `brew install stuartleeks/tap/devcontainer`
14
16
@@ -27,16 +29,16 @@ sudo -E ./install.sh
27
29
To enable bash completion, add the following to you `~/.bashrc` file:
28
30
29
31
```bash
30
-
source<(devcontainer completion bash)
32
+
source<(devcontainerx completion bash)
31
33
```
32
34
33
-
Or to alias `devcontainer` (to `dc` in this example):
35
+
Or to alias `devcontainerx` (to `dcx` in this example):
34
36
35
37
```bash
36
-
aliasdc=devcontainer
37
-
complete -F __start_devcontainer dc
38
+
aliasdcx=devcontainerx
39
+
complete -F __start_devcontainerx dcx
38
40
```
39
41
40
42
## Docs
41
43
42
-
See [the documentation](https://stuartleeks.github.io/devcontainer-cli) on how to work with `devcontainer`.
44
+
See [the documentation](https://stuartleeks.github.io/devcontainer-cli) on how to work with `devcontainerx`.
0 commit comments