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: docs/index.md
+45-16Lines changed: 45 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -27,25 +27,54 @@ Go to the [releases page](https://github.com/docker/desktop-extension-samples/re
27
27
28
28
Once you've downloaded Extensions CLI, you need to extract the binary into `~/.docker/cli-plugins`.
29
29
30
-
For macOS:
30
+
=== ":fontawesome-brands-apple: MacOS (intel)"
31
31
32
-
```console
33
-
tar -xvzf desktop-extension-cli-darwin-amd64.tar.gz
34
-
chmod +x docker-extension
35
-
mkdir -p ~/.docker/cli-plugins
36
-
mv docker-extension ~/.docker/cli-plugins
37
-
```
32
+
In a terminal, run:
38
33
39
-
!!! info
34
+
```console
35
+
tar -xvzf desktop-extension-cli-darwin-amd64.tar.gz
36
+
chmod +x docker-extension
37
+
mkdir -p ~/.docker/cli-plugins
38
+
mv docker-extension ~/.docker/cli-plugins
39
+
```
40
40
41
-
When running the Extensions CLI on macOS you'll see the message: _"docker-extension" cannot be opened because the developer cannot be verified."_ At the moment, the Extensions CLI is not signed by Docker (yet) and you'll need to trust the binary by going to `System Preferences` > `Security & Privacy` > (General tab) click on `Allow Anyway`.
41
+
!!! info
42
42
43
-
For Windows:
43
+
When running the Extensions CLI on macOS you'll see the message: _"docker-extension" cannot be opened because the developer cannot be verified."_ At the moment, the Extensions CLI is not signed by Docker (yet) and you'll need to trust the binary by going to `System Preferences` > `Security & Privacy` > (General tab) click on `Allow Anyway`.
44
44
45
-
```console
46
-
tar -xvzf desktop-extension-cli-windows-amd64.tar.gz
47
-
mkdir -p ~/.docker/cli-plugins
48
-
mv docker-extension.exe ~/.docker/cli-plugins
49
-
```
45
+
=== ":fontawesome-brands-apple: MacOS (arm)"
50
46
51
-
You can now enable the extension feature by running `docker extension enable`
47
+
In a terminal, run:
48
+
49
+
```console
50
+
tar -xvzf desktop-extension-cli-darwin-arm64.tar.gz
51
+
chmod +x docker-extension
52
+
mkdir -p ~/.docker/cli-plugins
53
+
mv docker-extension ~/.docker/cli-plugins
54
+
```
55
+
56
+
!!! info
57
+
58
+
When running the Extensions CLI on macOS you'll see the message: _"docker-extension" cannot be opened because the developer cannot be verified."_ At the moment, the Extensions CLI is not signed by Docker (yet) and you'll need to trust the binary by going to `System Preferences` > `Security & Privacy` > (General tab) click on `Allow Anyway`.
59
+
60
+
=== ":fontawesome-brands-windows: Windows"
61
+
62
+
In a PowerShell terminal, run:
63
+
64
+
```powershell
65
+
tar -xvzf desktop-extension-cli-windows-amd64.tar.gz
0 commit comments