mirror of https://github.com/docker/docs.git
Add some mention to show extension containers from other places in the doc (#16175)
* Add some mention to show extension containers from other places in the doc * Update desktop/extensions-sdk/quickstart.md Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
This commit is contained in:
parent
6039b50afe
commit
c1f86e29c6
|
@ -92,6 +92,12 @@ COPY --from=client-builder /app/client/dist ui
|
|||
CMD [ "sleep", "infinity" ]
|
||||
```
|
||||
|
||||
> **Tip**
|
||||
>
|
||||
> Enable the "Show system containers" option in Docker Desktop to see the extension container running.
|
||||
> See [how to show extension containers](../test-debug.md#show-the-extension-containers) for more information.
|
||||
{: .tip }
|
||||
|
||||
## Configure the metadata file
|
||||
|
||||
A `metadata.json` file is required at the root of the image filesystem.
|
||||
|
|
|
@ -58,10 +58,12 @@ To install the extension in Docker Desktop, run:
|
|||
$ docker extension install <name-of-your-extension>
|
||||
```
|
||||
|
||||
To preview the extension in Docker Desktop, close and open Docker Dashboard once the installation is complete.
|
||||
To preview the extension in Docker Desktop, open Docker Dashboard once the installation is complete.
|
||||
|
||||
During UI development, it’s helpful to use hot reloading to test your changes without rebuilding your entire extension. See [Preview whilst developing the UI](build/test-debug.md#hot-reloading-whilst-developing-the-ui) for more information.
|
||||
|
||||
You may also want to inspect the containers that belong to the extension. By default, extension containers are hidden from the Docker Dashboard. You can change this in **Settings**, see [how to show extension containers](build/test-debug.md#show-the-extension-containers) for more information.
|
||||
|
||||
## Step four: Submit and publish your extension to the Marketplace
|
||||
|
||||
If you want to make your extension available to all Docker Desktop users, you can submit it for publication in the Marketplace. For more information, see [Publish](extensions/index.md).
|
||||
|
|
Loading…
Reference in New Issue