mirror of https://github.com/docker/cli.git
Merge pull request #3297 from thaJeztah/fix_links
docs: fix some broken anchors
This commit is contained in:
commit
0355b2da09
|
@ -54,7 +54,7 @@ Deprecated | [Support for encrypted TLS private keys](#support-for-encrypted-tls
|
||||||
Deprecated | [Kubernetes stack and context support](#kubernetes-stack-and-context-support) | v20.10 | -
|
Deprecated | [Kubernetes stack and context support](#kubernetes-stack-and-context-support) | v20.10 | -
|
||||||
Deprecated | [Pulling images from non-compliant image registries](#pulling-images-from-non-compliant-image-registries) | v20.10 | -
|
Deprecated | [Pulling images from non-compliant image registries](#pulling-images-from-non-compliant-image-registries) | v20.10 | -
|
||||||
Removed | [Linux containers on Windows (LCOW)](#linux-containers-on-windows-lcow-experimental) | v20.10 | v21.xx
|
Removed | [Linux containers on Windows (LCOW)](#linux-containers-on-windows-lcow-experimental) | v20.10 | v21.xx
|
||||||
Deprecated | [BLKIO weight options with cgroups v1](#blkio-weight-options–with-cgroups-v1) | v20.10 | -
|
Deprecated | [BLKIO weight options with cgroups v1](#blkio-weight-options-with-cgroups-v1) | v20.10 | -
|
||||||
Deprecated | [Kernel memory limit](#kernel-memory-limit) | v20.10 | -
|
Deprecated | [Kernel memory limit](#kernel-memory-limit) | v20.10 | -
|
||||||
Deprecated | [Classic Swarm and overlay networks using external key/value stores](#classic-swarm-and-overlay-networks-using-cluster-store) | v20.10 | -
|
Deprecated | [Classic Swarm and overlay networks using external key/value stores](#classic-swarm-and-overlay-networks-using-cluster-store) | v20.10 | -
|
||||||
Deprecated | [Support for the legacy `~/.dockercfg` configuration file for authentication](#support-for-legacy-dockercfg-configuration-files) | v20.10 | -
|
Deprecated | [Support for the legacy `~/.dockercfg` configuration file for authentication](#support-for-legacy-dockercfg-configuration-files) | v20.10 | -
|
||||||
|
|
|
@ -114,7 +114,7 @@ Enable the authorization plugin with a dedicated command line flag in the
|
||||||
`--authorization-plugin=PLUGIN_ID` format. The flag supplies a `PLUGIN_ID`
|
`--authorization-plugin=PLUGIN_ID` format. The flag supplies a `PLUGIN_ID`
|
||||||
value. This value can be the plugin’s socket or a path to a specification file.
|
value. This value can be the plugin’s socket or a path to a specification file.
|
||||||
Authorization plugins can be loaded without restarting the daemon. Refer
|
Authorization plugins can be loaded without restarting the daemon. Refer
|
||||||
to the [`dockerd` documentation](../reference/commandline/dockerd.md#configuration-reloading) for more information.
|
to the [`dockerd` documentation](../reference/commandline/dockerd.md#configuration-reload-behavior) for more information.
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ dockerd --authorization-plugin=plugin1 --authorization-plugin=plugin2,...
|
$ dockerd --authorization-plugin=plugin1 --authorization-plugin=plugin2,...
|
||||||
|
|
|
@ -179,7 +179,7 @@ Docker runs instructions in a `Dockerfile` in order. A `Dockerfile` **must
|
||||||
begin with a `FROM` instruction**. This may be after [parser
|
begin with a `FROM` instruction**. This may be after [parser
|
||||||
directives](#parser-directives), [comments](#format), and globally scoped
|
directives](#parser-directives), [comments](#format), and globally scoped
|
||||||
[ARGs](#arg). The `FROM` instruction specifies the [*Parent
|
[ARGs](#arg). The `FROM` instruction specifies the [*Parent
|
||||||
Image*](https://docs.docker.com/glossary/#parent_image) from which you are
|
Image*](https://docs.docker.com/glossary/#parent-image) from which you are
|
||||||
building. `FROM` may only be preceded by one or more `ARG` instructions, which
|
building. `FROM` may only be preceded by one or more `ARG` instructions, which
|
||||||
declare arguments that are used in `FROM` lines in the `Dockerfile`.
|
declare arguments that are used in `FROM` lines in the `Dockerfile`.
|
||||||
|
|
||||||
|
@ -677,7 +677,7 @@ FROM [--platform=<platform>] <image>[@<digest>] [AS <name>]
|
||||||
```
|
```
|
||||||
|
|
||||||
The `FROM` instruction initializes a new build stage and sets the
|
The `FROM` instruction initializes a new build stage and sets the
|
||||||
[*Base Image*](https://docs.docker.com/glossary/#base_image) for subsequent instructions. As such, a
|
[*Base Image*](https://docs.docker.com/glossary/#base-image) for subsequent instructions. As such, a
|
||||||
valid `Dockerfile` must start with a `FROM` instruction. The image can be
|
valid `Dockerfile` must start with a `FROM` instruction. The image can be
|
||||||
any valid image – it is especially easy to start by **pulling an image** from
|
any valid image – it is especially easy to start by **pulling an image** from
|
||||||
the [*Public Repositories*](https://docs.docker.com/docker-hub/repos/).
|
the [*Public Repositories*](https://docs.docker.com/docker-hub/repos/).
|
||||||
|
|
Loading…
Reference in New Issue