Remove extension beta mentions (#16383)

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
Guillaume Tardif 2023-01-12 16:29:19 +01:00 committed by GitHub
parent e74dd9e578
commit 635e0160e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 19 deletions

View File

@ -844,7 +844,7 @@ reference:
path: /docker-hub/api/deprecated/ path: /docker-hub/api/deprecated/
- title: Registry API - title: Registry API
path: /registry/spec/api/ path: /registry/spec/api/
- sectiontitle: Docker Extension SDK API (Beta) - sectiontitle: Docker Extension SDK API
section: section:
- path: /desktop/extensions-sdk/dev/api/reference/interfaces/DesktopUI/ - path: /desktop/extensions-sdk/dev/api/reference/interfaces/DesktopUI/
title: DesktopUI title: DesktopUI
@ -1159,7 +1159,7 @@ manuals:
title: Distribute your dev environment title: Distribute your dev environment
- path: /desktop/dev-environments/dev-cli/ - path: /desktop/dev-environments/dev-cli/
title: Use the docker dev CLI plugin title: Use the docker dev CLI plugin
- sectiontitle: Extensions (Beta) - sectiontitle: Extensions
section: section:
- path: /desktop/extensions/ - path: /desktop/extensions/
title: What are Docker Extensions? title: What are Docker Extensions?
@ -1169,7 +1169,7 @@ manuals:
title: Manage non-Marketplace extensions title: Manage non-Marketplace extensions
- path: /desktop/extensions/settings-feedback/ - path: /desktop/extensions/settings-feedback/
title: Change Settings and give feedback title: Change Settings and give feedback
- sectiontitle: Extensions SDK (Beta) - sectiontitle: Extensions SDK
section: section:
- path: /desktop/extensions-sdk/ - path: /desktop/extensions-sdk/
title: Overview title: Overview

View File

@ -51,7 +51,7 @@ FROM scratch
LABEL org.opencontainers.image.title="Minimal frontend" \ LABEL org.opencontainers.image.title="Minimal frontend" \
org.opencontainers.image.description="A sample extension to show how easy it's to get started with Desktop Extensions." \ org.opencontainers.image.description="A sample extension to show how easy it's to get started with Desktop Extensions." \
org.opencontainers.image.vendor="Awesome Inc." \ org.opencontainers.image.vendor="Awesome Inc." \
com.docker.desktop.extension.api.version="1.0.0-beta.1" \ com.docker.desktop.extension.api.version="0.3.0" \
com.docker.desktop.extension.icon="https://www.docker.com/wp-content/uploads/2022/03/Moby-logo.png" com.docker.desktop.extension.icon="https://www.docker.com/wp-content/uploads/2022/03/Moby-logo.png"
COPY ui ./ui COPY ui ./ui
@ -85,8 +85,7 @@ install it.
$ docker build --tag= awesome-inc/my-extension:latest . $ docker build --tag= awesome-inc/my-extension:latest .
``` ```
This built an image tagged `awesome-inc/my-extension:latest`, you can run `docker inspect This built an image tagged `awesome-inc/my-extension:latest`, you can run `docker inspect awesome-inc/my-extension:latest` to see more details about it.
awesome-inc/my-extension:latest` to see more details about it.
Finally, you can install the extension and see it appearing in the Docker Desktop Dashboard. Finally, you can install the extension and see it appearing in the Docker Desktop Dashboard.

View File

@ -3,16 +3,11 @@ title: Overview
description: Overall index for Docker Extensions SDK documentation description: Overall index for Docker Extensions SDK documentation
keywords: Docker, Extensions, sdk keywords: Docker, Extensions, sdk
redirect_from: redirect_from:
- /desktop/extensions-sdk/dev/overview/ - /desktop/extensions-sdk/dev/overview/
--- ---
Use the resources in this section to create your own Docker Extension. Use the resources in this section to create your own Docker Extension.
> Beta
>
> The Docker Extensions SDK is currently in [Beta](../../release-lifecycle.md#beta).
> Features and APIs detailed below are subject to change.
Extensions are packaged as specially formatted Docker images, which our CLI tool helps to build. At the root of the image filesystem is a `metadata.json` file which describes the content of the extension. It is a fundamental element of a Docker extension. Extensions are packaged as specially formatted Docker images, which our CLI tool helps to build. At the root of the image filesystem is a `metadata.json` file which describes the content of the extension. It is a fundamental element of a Docker extension.
An extension can contain a UI part and backend parts that run either on the host or in the Desktop virtual machine. An extension can contain a UI part and backend parts that run either on the host or in the Desktop virtual machine.

View File

@ -6,10 +6,6 @@ toc_min: 1
toc_max: 2 toc_max: 2
--- ---
> **Beta**
>
> This feature is currently in [Beta](../../release-lifecycle.md#beta). We recommend that you do not use Docker Extensions in production environments.
Docker Extensions lets you use third-party tools within Docker Desktop to extend its functionality. Docker Extensions lets you use third-party tools within Docker Desktop to extend its functionality.
You can seamlessly connect your favorite development tools to your application development and deployment workflows. Augment Docker Desktop with debugging, testing, security, and networking functionalities, and build custom add-ons using the Extensions [SDK](../extensions-sdk/index.md). You can seamlessly connect your favorite development tools to your application development and deployment workflows. Augment Docker Desktop with debugging, testing, security, and networking functionalities, and build custom add-ons using the Extensions [SDK](../extensions-sdk/index.md).