Skip to content

Commit edc0125

Browse files
authored
Merge pull request #100 from gtardif/docs_cli_signing
Docs cli signing
2 parents 1c64b5c + 23946e0 commit edc0125

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

docs/dev/overview.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ If you intend to develop an extension which consists exclusively of a visual par
88

99
If your extension requires additional services running in the Docker Desktop VM, have a look at the [VM UI](vm-ui-plugin) example.
1010

11-
Finally, if you need to deploy binaries to the host as part of your extension's installation, check out the [telepresence](telepresence) example.
12-
1311
For further inspiration, have a look at the rest of examples in the root of this repository.
1412

1513
### Opening Dev Tools

docs/extensions/METADATA.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ The `host` section defines some binaries that must be deployed on the host. (The
8080
{
8181
"darwin": [
8282
{
83-
"path": "/darwin/telepresence"
83+
"path": "/darwin/myBinary"
8484
},
8585
],
8686
"windows": [
8787
{
88-
"path": "/windows/kubectl.exe"
88+
"path": "/windows/myBinary.exe"
8989
},
9090
]
9191
}

docs/index.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,30 +34,20 @@ Once you've downloaded Extensions CLI, you need to extract the binary into `~/.d
3434

3535
```console
3636
tar -xvzf desktop-extension-cli-darwin-amd64.tar.gz
37-
chmod +x docker-extension
3837
mkdir -p ~/.docker/cli-plugins
3938
mv docker-extension ~/.docker/cli-plugins
4039
```
4140

42-
!!! info
43-
44-
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`.
45-
4641
=== ":fontawesome-brands-apple: MacOS (arm)"
4742

4843
In a terminal, run:
4944

5045
```console
5146
tar -xvzf desktop-extension-cli-darwin-arm64.tar.gz
52-
chmod +x docker-extension
5347
mkdir -p ~/.docker/cli-plugins
5448
mv docker-extension ~/.docker/cli-plugins
5549
```
5650

57-
!!! info
58-
59-
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`.
60-
6151
=== ":fontawesome-brands-windows: Windows"
6252

6353
In a PowerShell terminal, run:

0 commit comments

Comments
 (0)