move plugins out of experimental
Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
parent
9cda7c331e
commit
410d4ce7ae
@ -5,7 +5,6 @@ aliases: [
|
||||
title: "Plugin config"
|
||||
description: "How develop and use a plugin with the managed plugin system"
|
||||
keywords: "API, Usage, plugins, documentation, developer"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -19,8 +18,8 @@ advisory: "experimental"
|
||||
|
||||
# Plugin Config Version 0 of Plugin V2
|
||||
|
||||
This document outlines the format of the V0 plugin config. The plugin
|
||||
config described herein was introduced in the Docker daemon (experimental version) in the [v1.12.0
|
||||
This document outlines the format of the V0 plugin configuration. The plugin
|
||||
config described herein was introduced in the Docker daemon in the [v1.12.0
|
||||
release](https://github.com/docker/docker/commit/f37117045c5398fd3dca8016ea8ca0cb47e7312b).
|
||||
|
||||
Plugin configs describe the various constituents of a docker plugin. Plugin
|
||||
@ -171,7 +170,6 @@ Config provides the base accessible fields for working with V0 plugin format
|
||||
|
||||
```
|
||||
{
|
||||
"configVersion": "v0",
|
||||
"description": "A test plugin for Docker",
|
||||
"documentation": "https://docs.docker.com/engine/extend/plugins/",
|
||||
"entrypoint": ["plugin-no-remove", "/data"],
|
||||
|
@ -1,5 +1,4 @@
|
||||
---
|
||||
advisory: experimental
|
||||
aliases:
|
||||
- /engine/extend/
|
||||
description: Develop and use a plugin with the managed plugin system
|
||||
@ -18,9 +17,6 @@ title: Managed plugin system
|
||||
|
||||
# Docker Engine managed plugin system
|
||||
|
||||
This document describes the plugin system available today in the **experimental
|
||||
build** of Docker 1.12:
|
||||
|
||||
* [Installing and using a plugin](index.md#installing-and-using-a-plugin)
|
||||
* [Developing a plugin](index.md#developing-a-plugin)
|
||||
|
||||
|
@ -17,8 +17,8 @@ keywords: "Examples, Usage, plugins, docker, documentation, user guide"
|
||||
# Use Docker Engine plugins
|
||||
|
||||
This document describes the Docker Engine plugins generally available in Docker
|
||||
Engine. To view information on plugins managed by Docker Engine currently in
|
||||
experimental status, refer to [Docker Engine plugin system](index.md).
|
||||
Engine. To view information on plugins managed by Docker,
|
||||
refer to [Docker Engine plugin system](index.md).
|
||||
|
||||
You can extend the capabilities of the Docker Engine by loading third-party
|
||||
plugins. This page explains the types of plugins and provides links to several
|
||||
|
@ -19,8 +19,7 @@ Docker plugins are out-of-process extensions which add capabilities to the
|
||||
Docker Engine.
|
||||
|
||||
This document describes the Docker Engine plugin API. To view information on
|
||||
plugins managed by Docker Engine currently in experimental status, refer to
|
||||
[Docker Engine plugin system](index.md).
|
||||
plugins managed by Docker Engine, refer to [Docker Engine plugin system](index.md).
|
||||
|
||||
This page is intended for people who want to develop their own Docker plugin.
|
||||
If you just want to learn about or use Docker plugins, look
|
||||
|
@ -17,8 +17,8 @@ aliases: ["/engine/extend/authorization/"]
|
||||
# Create an authorization plugin
|
||||
|
||||
This document describes the Docker Engine plugins generally available in Docker
|
||||
Engine. To view information on plugins managed by Docker Engine currently in
|
||||
experimental status, refer to [Docker Engine plugin system](index.md).
|
||||
Engine. To view information on plugins managed by Docker Engine,
|
||||
refer to [Docker Engine plugin system](index.md).
|
||||
|
||||
Docker's out-of-the-box authorization model is all or nothing. Any user with
|
||||
permission to access the Docker daemon can run any Docker client command. The
|
||||
|
@ -1,8 +1,7 @@
|
||||
---
|
||||
title: "plugin create (experimental)"
|
||||
title: "plugin create"
|
||||
description: "the plugin create command description and usage"
|
||||
keywords: "plugin, create"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,10 +13,12 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin create
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin create [OPTIONS] reponame[:tag] PATH-TO-ROOTFS
|
||||
|
||||
create a plugin from the given PATH-TO-ROOTFS, which contains the plugin's root filesystem and the config file, config.json
|
||||
Create a plugin from a rootfs and configuration
|
||||
|
||||
Options:
|
||||
--compress Compress the context using gzip
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin disable"
|
||||
description: "the plugin disable command description and usage"
|
||||
keywords: "plugin, disable"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin disable (experimental)
|
||||
# plugin disable
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin disable PLUGIN
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin enable"
|
||||
description: "the plugin enable command description and usage"
|
||||
keywords: "plugin, enable"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin enable (experimental)
|
||||
# plugin enable
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin enable PLUGIN
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin inspect"
|
||||
description: "The plugin inspect command description and usage"
|
||||
keywords: "plugin, inspect"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin inspect (experimental)
|
||||
# plugin inspect
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin inspect [OPTIONS] PLUGIN [PLUGIN...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin install"
|
||||
description: "the plugin install command description and usage"
|
||||
keywords: "plugin, install"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin install (experimental)
|
||||
# plugin install
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin install [OPTIONS] PLUGIN [KEY=VALUE...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin ls"
|
||||
description: "The plugin ls command description and usage"
|
||||
keywords: "plugin, list"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin ls (experimental)
|
||||
# plugin ls
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin ls [OPTIONS]
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin rm"
|
||||
description: "the plugin rm command description and usage"
|
||||
keywords: "plugin, rm"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin rm (experimental)
|
||||
# plugin rm
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin rm [OPTIONS] PLUGIN [PLUGIN...]
|
||||
|
@ -2,7 +2,6 @@
|
||||
title: "plugin set"
|
||||
description: "the plugin set command description and usage"
|
||||
keywords: "plugin, set"
|
||||
advisory: "experimental"
|
||||
---
|
||||
|
||||
<!-- This file is maintained within the docker/docker Github
|
||||
@ -14,7 +13,7 @@ advisory: "experimental"
|
||||
will be rejected.
|
||||
-->
|
||||
|
||||
# plugin set (experimental)
|
||||
# plugin set
|
||||
|
||||
```markdown
|
||||
Usage: docker plugin set PLUGIN KEY=VALUE [KEY=VALUE...]
|
||||
|
Loading…
x
Reference in New Issue
Block a user