mirror of https://github.com/docker/docs.git
cli: remove alias stubs
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
parent
fdc73c2002
commit
04de43a394
|
@ -38,7 +38,7 @@ Some projects may need distinct Dockerfiles for specific purposes. A common
|
|||
convention is to name these `<something>.Dockerfile`. You can specify the
|
||||
Dockerfile filename using the `--file` flag for the `docker build` command.
|
||||
Refer to the
|
||||
[`docker build` CLI reference](../../engine/reference/commandline/build.md#file)
|
||||
[`docker build` CLI reference](../../engine/reference/commandline/image_build.md#file)
|
||||
to learn about the `--file` flag.
|
||||
|
||||
> **Note**
|
||||
|
|
|
@ -103,7 +103,7 @@ This is explored later on in this guide.
|
|||
|
||||
Related information:
|
||||
|
||||
- [`docker build --output` CLI reference](../../engine/reference/commandline/build.md#output)
|
||||
- [`docker build --output` CLI reference](../../engine/reference/commandline/image_build.md#output)
|
||||
- [Build exporters](../exporters/index.md)
|
||||
|
||||
## Next steps
|
||||
|
|
|
@ -160,8 +160,8 @@ container image and created a container from it.
|
|||
Related information:
|
||||
|
||||
- [Dockerfile reference](../../engine/reference/builder.md)
|
||||
- [`docker build` CLI reference](../../engine/reference/commandline/build.md)
|
||||
- [`docker run` CLI reference](../../engine/reference/commandline/run.md)
|
||||
- [`docker build` CLI reference](../../engine/reference/commandline/image_build.md)
|
||||
- [`docker run` CLI reference](../../engine/reference/commandline/container_run.md)
|
||||
|
||||
## Next steps
|
||||
|
||||
|
|
|
@ -273,7 +273,7 @@ An entry with the ip address and hostname is created in `/etc/hosts` inside cont
|
|||
Specify a build’s container isolation technology. On Linux, the only supported value
|
||||
is `default`. On Windows, acceptable values are `default`, `process` and
|
||||
`hyperv`. Refer to the
|
||||
[Docker Engine docs](../../engine/reference/commandline/run.md#isolation)
|
||||
[Docker Engine docs](../../engine/reference/commandline/container_run.md#isolation)
|
||||
for details.
|
||||
|
||||
If unspecified, Compose will use the `isolation` value found in the service's definition
|
||||
|
@ -778,7 +778,7 @@ host system to be added. An example of where this is useful is when multiple
|
|||
containers (running as different users) need to all read or write the same
|
||||
file on the host system. That file can be owned by a group shared by all the
|
||||
containers, and specified in `group_add`. See the
|
||||
[Docker documentation](../../engine/reference/run.md#additional-groups) for more
|
||||
[Docker documentation](../../engine/reference/commandline/container_run.md#additional-groups) for more
|
||||
details.
|
||||
|
||||
A full example:
|
||||
|
@ -900,7 +900,7 @@ services:
|
|||
Specify a container’s isolation technology. On Linux, the only supported value
|
||||
is `default`. On Windows, acceptable values are `default`, `process` and
|
||||
`hyperv`. Refer to the
|
||||
[Docker Engine docs](../../engine/reference/commandline/run.md#isolation)
|
||||
[Docker Engine docs](../../engine/reference/commandline/container_run.md#isolation)
|
||||
for details.
|
||||
|
||||
### labels
|
||||
|
@ -1557,7 +1557,7 @@ restart: "unless-stopped"
|
|||
### cpu_count, cpu_percent, cpu\_shares, cpu\_period, cpu\_quota, cpus, cpuset, domainname, hostname, ipc, mac\_address, mem\_limit, memswap\_limit, mem\_swappiness, mem\_reservation, oom_kill_disable, oom_score_adj, privileged, read\_only, shm\_size, stdin\_open, tty, user, working\_dir
|
||||
|
||||
Each of these is a single value, analogous to its
|
||||
[docker run](../../engine/reference/run.md#runtime-constraints-on-resources) counterpart.
|
||||
[docker run](../../engine/reference/commandline/container_run.md#runtime-constraints-on-resources) counterpart.
|
||||
|
||||
> Added in [version 2.2](compose-versioning.md#version-22) file format.
|
||||
>
|
||||
|
@ -1984,4 +1984,4 @@ networks:
|
|||
- [Installing Compose](../install/index.md)
|
||||
- [Compose file versions and upgrading](compose-versioning.md)
|
||||
- [Sample apps with Compose](../samples-for-compose.md)
|
||||
- [Command line reference](../reference/index.md)
|
||||
- [Command line reference](../reference/index.md)
|
||||
|
|
|
@ -1339,7 +1339,7 @@ services:
|
|||
Specify a container’s isolation technology. On Linux, the only supported value
|
||||
is `default`. On Windows, acceptable values are `default`, `process` and
|
||||
`hyperv`. Refer to the
|
||||
[Docker Engine docs](../../engine/reference/commandline/run.md#isolation)
|
||||
[Docker Engine docs](../../engine/reference/commandline/container_run.md#isolation)
|
||||
for details.
|
||||
|
||||
### labels
|
||||
|
@ -1904,7 +1904,7 @@ sysctls:
|
|||
You can only use sysctls that are namespaced in the kernel. Docker does not
|
||||
support changing sysctls inside a container that also modify the host system.
|
||||
For an overview of supported sysctls, refer to
|
||||
[configure namespaced kernel parameters (sysctls) at runtime](../../engine/reference/commandline/run.md#sysctl).
|
||||
[configure namespaced kernel parameters (sysctls) at runtime](../../engine/reference/commandline/container_run.md#sysctl).
|
||||
|
||||
> Note when using docker stack deploy
|
||||
>
|
||||
|
@ -2151,7 +2151,7 @@ services:
|
|||
### domainname, hostname, ipc, mac\_address, privileged, read\_only, shm\_size, stdin\_open, tty, user, working\_dir
|
||||
|
||||
Each of these is a single value, analogous to its
|
||||
[docker run](../../engine/reference/run.md) counterpart. Note that `mac_address` is a legacy option.
|
||||
[docker run](../../engine/reference/commandline/container_run.md) counterpart. Note that `mac_address` is a legacy option.
|
||||
|
||||
```yaml
|
||||
user: postgresql
|
||||
|
|
|
@ -3245,8 +3245,8 @@ Several new configuration keys have been added to `docker-compose.yml`:
|
|||
- `pid: host`, like `docker run --pid=host`, lets you reuse the same PID namespace as the host machine.
|
||||
- `cpuset`, like `docker run --cpuset-cpus`, lets you specify which CPUs to allow execution in.
|
||||
- `read_only`, like `docker run --read-only`, lets you mount a container's filesystem as read-only.
|
||||
- `security_opt`, like `docker run --security-opt`, lets you specify [security options](/engine/reference/run/#security-configuration).
|
||||
- `log_driver`, like `docker run --log-driver`, lets you specify a [log driver](/engine/reference/run/#logging-drivers---log-driver).
|
||||
- `security_opt`, like `docker run --security-opt`, lets you specify [security options](/engine/reference/commandline/container_run/#security-opt).
|
||||
- `log_driver`, like `docker run --log-driver`, lets you specify a [log driver](/engine/reference/commandline/container_run/#log-driver).
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ on when you should set such limits and the possible implications of setting them
|
|||
|
||||
Many of these features require your kernel to support Linux capabilities. To
|
||||
check for support, you can use the
|
||||
[`docker info`](../../engine/reference/commandline/info.md) command. If a capability
|
||||
[`docker info`](../../engine/reference/commandline/system_info.md) command. If a capability
|
||||
is disabled in your kernel, you may see a warning at the end of the output like
|
||||
the following:
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ redis1 0.07% 796 KB / 64 MB 1.21%
|
|||
redis2 0.07% 2.746 MB / 64 MB 4.29% 1.266 KB / 648 B 12.4 MB / 0 B
|
||||
```
|
||||
|
||||
The [`docker stats`](../../engine/reference/commandline/stats.md) reference
|
||||
The [`docker stats`](../../engine/reference/commandline/container_stats.md) reference
|
||||
page has more details about the `docker stats` command.
|
||||
|
||||
## Control groups
|
||||
|
|
|
@ -95,13 +95,13 @@ description for commands that support the `--filter` flag:
|
|||
- [`docker config ls`](../engine/reference/commandline/config_ls.md)
|
||||
- [`docker container prune`](../engine/reference/commandline/container_prune.md)
|
||||
- [`docker image prune`](../engine/reference/commandline/image_prune.md)
|
||||
- [`docker images`](../engine/reference/commandline/images.md)
|
||||
- [`docker image ls`](../engine/reference/commandline/image_ls.md)
|
||||
- [`docker network ls`](../engine/reference/commandline/network_ls.md)
|
||||
- [`docker network prune`](../engine/reference/commandline/network_prune.md)
|
||||
- [`docker node ls`](../engine/reference/commandline/node_ls.md)
|
||||
- [`docker node ps`](../engine/reference/commandline/node_ps.md)
|
||||
- [`docker plugin ls`](../engine/reference/commandline/plugin_ls.md)
|
||||
- [`docker ps`](../engine/reference/commandline/ps.md)
|
||||
- [`docker container ls`](../engine/reference/commandline/container_ls.md)
|
||||
- [`docker search`](../engine/reference/commandline/search.md)
|
||||
- [`docker secret ls`](../engine/reference/commandline/secret_ls.md)
|
||||
- [`docker service ls`](../engine/reference/commandline/service_ls.md)
|
||||
|
|
|
@ -80,15 +80,15 @@ Labels on Swarm nodes and services can be updated dynamically.
|
|||
- Images and containers
|
||||
|
||||
- [Adding labels to images](../engine/reference/builder.md#label)
|
||||
- [Overriding a container's labels at runtime](../engine/reference/commandline/run.md#label)
|
||||
- [Overriding a container's labels at runtime](../engine/reference/commandline/container_run.md#label)
|
||||
- [Inspecting labels on images or containers](../engine/reference/commandline/inspect.md)
|
||||
- [Filtering images by label](../engine/reference/commandline/images.md#filter)
|
||||
- [Filtering containers by label](../engine/reference/commandline/ps.md#filter)
|
||||
- [Filtering images by label](../engine/reference/commandline/image_ls.md#filter)
|
||||
- [Filtering containers by label](../engine/reference/commandline/container_ls.md#filter)
|
||||
|
||||
- Local Docker daemons
|
||||
|
||||
- [Adding labels to a Docker daemon at runtime](../engine/reference/commandline/dockerd.md)
|
||||
- [Inspecting a Docker daemon's labels](../engine/reference/commandline/info.md)
|
||||
- [Inspecting a Docker daemon's labels](../engine/reference/commandline/system_info.md)
|
||||
|
||||
- Volumes
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ computer, for example.
|
|||
|
||||
## Save your data
|
||||
|
||||
1. Commit your containers to an image with [`docker container commit`](../engine/reference/commandline/commit.md).
|
||||
1. Commit your containers to an image with [`docker container commit`](../engine/reference/commandline/container_commit.md).
|
||||
|
||||
Committing a container stores the container filesystem changes and some of the
|
||||
container's configuration, for example labels and environment-variables, as a local image. Be aware that environment variables may contain sensitive
|
||||
|
@ -26,13 +26,13 @@ computer, for example.
|
|||
|
||||
If you used a [named volume](../storage/index.md#more-details-about-mount-types) to store container data, such as databases, refer to the [back up, restore, or migrate data volumes](../storage/volumes.md#back-up-restore-or-migrate-data-volumes) page in the storage section.
|
||||
|
||||
2. Use [`docker push`](../engine/reference/commandline/push.md) to push any
|
||||
2. Use [`docker push`](../engine/reference/commandline/image_push.md) to push any
|
||||
images you have built locally and want to keep to the [Docker Hub registry](../docker-hub/index.md).
|
||||
|
||||
Make sure to configure the [repository's visibility as "private"](../docker-hub/repos/index.md)
|
||||
for images that should not be publicly accessible.
|
||||
|
||||
Alternatively, use [`docker image save -o images.tar image1 [image2 ...]`](../engine/reference/commandline/save.md)
|
||||
Alternatively, use [`docker image save -o images.tar image1 [image2 ...]`](../engine/reference/commandline/image_save.md)
|
||||
to save any images you want to keep to a local tar file.
|
||||
|
||||
After backing up your data, you can uninstall the current version of Docker Desktop
|
||||
|
@ -40,13 +40,13 @@ and [install a different version](release-notes.md) or reset Docker Desktop to f
|
|||
|
||||
## Restore your data
|
||||
|
||||
1. Use [`docker pull`](../engine/reference/commandline/pull.md) to restore images
|
||||
1. Use [`docker pull`](../engine/reference/commandline/image_pull.md) to restore images
|
||||
you pushed to Docker Hub.
|
||||
|
||||
If you backed up your images to a local tar file, use [`docker image load -i images.tar`](../engine/reference/commandline/load.md)
|
||||
If you backed up your images to a local tar file, use [`docker image load -i images.tar`](../engine/reference/commandline/image_load.md)
|
||||
to restore previously saved images.
|
||||
|
||||
2. Re-create your containers if needed, using [`docker run`](../engine/reference/commandline/run.md),
|
||||
2. Re-create your containers if needed, using [`docker run`](../engine/reference/commandline/container_run.md),
|
||||
or [Docker Compose](../compose/index.md).
|
||||
|
||||
Refer to the [backup, restore, or migrate data volumes](../storage/volumes.md#back-up-restore-or-migrate-data-volumes) page in the storage section to restore volume data.
|
||||
Refer to the [backup, restore, or migrate data volumes](../storage/volumes.md#back-up-restore-or-migrate-data-volumes) page in the storage section to restore volume data.
|
||||
|
|
|
@ -150,7 +150,7 @@ The following `admin-settings.json` code and table provides an example of the re
|
|||
|`scout`|| Setting `useBackgroundIndexing` to `false` disables automatic indexing of images loaded to the image store. Setting `sbomIndexing` to `false` prevents the manual indexing triggered by inspecting an image in Docker Desktop.<br><br>**Note**: Users can still use the `docker scout` CLI commands to index images, even if indexing is disabled in Settings Management. |
|
||||
| `allowExperimentalFeatures`| | If `value` is set to `false`, experimental features are disabled.|
|
||||
| `allowBetaFeatures`| | If `value` is set to `false`, beta features are disabled.|
|
||||
| `blockDockerLoad` | | If `value` is set to `true`, users are no longer able to run [`docker load`](../../../engine/reference/commandline/load.md) and receive an error if they try to.|
|
||||
| `blockDockerLoad` | | If `value` is set to `true`, users are no longer able to run [`docker load`](../../../engine/reference/commandline/image_load.md) and receive an error if they try to.|
|
||||
|
||||
### Step three: Re-launch Docker Desktop
|
||||
>**Note**
|
||||
|
|
|
@ -162,5 +162,5 @@ container to random ports on the host.
|
|||
$ docker run -d -P --name webserver nginx
|
||||
```
|
||||
|
||||
See the [run command](../engine/reference/commandline/run.md) for more details on
|
||||
publish options used with `docker run`.
|
||||
See the [run command](../engine/reference/commandline/container_run.md) for more details on
|
||||
publish options used with `docker run`.
|
||||
|
|
|
@ -35,7 +35,7 @@ This page contains release notes for older versions of Docker Desktop for Mac.
|
|||
- Re-enable raw as the default disk format for users running macOS 10.13.4 and higher. Note this change only takes effect after a "reset to factory defaults" or "remove all data" (from the Whale menu -> Preferences -> Reset). Related to [docker/for-mac#2625](https://github.com/docker/for-mac/issues/2625)
|
||||
|
||||
* Bug fixes and minor changes
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Preferences > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Preferences > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/image_save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- OS X El Captain 10.11 is deprecated in Docker Desktop. You will not be able to install updates after Docker Desktop 18.06.x. We recommend upgrading to the latest version of macOS.
|
||||
- Fix bug which would cause VM logs to be written to RAM rather than disk in some cases, and the VM to hang. See [docker/for-mac#2984](https://github.com/docker/for-mac/issues/2984)
|
||||
- Fix network connection leak triggered by haproxy TCP health-checks [docker/for-mac#1132](https://github.com/docker/for-mac/issues/1132)
|
||||
|
@ -562,4 +562,4 @@ events or unexpected unmounts.
|
|||
|
||||
* Docker 1.12.0
|
||||
* Docker Machine 0.8.0
|
||||
* Docker Compose 1.8.0
|
||||
* Docker Compose 1.8.0
|
||||
|
|
|
@ -49,7 +49,7 @@ This page contains release notes for older versions of Docker Desktop for Window
|
|||
- Kubernetes Support. You can now run a single-node Kubernetes cluster from the "Kubernetes" Pane in Docker for Windows settings and use kubectl commands as well as Docker commands. See [the Kubernetes section](../kubernetes.md)
|
||||
|
||||
* Bug fixes and minor changes
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset the disk image (in Settings > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/save/#examples) and [backup volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset the disk image (in Settings > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/image_save/#examples) and [backup volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- Fix bug which would in some cases cause virtual machine logs to be written to RAM rather than disk, and the virtual machine to hang.
|
||||
- Fix security issue with named pipe connection to docker service.
|
||||
- Fix VPNKit memory leak. Fixes [docker/for-win#2087](https://github.com/docker/for-win/issues/2087), [moby/vpnkit#371](https://github.com/moby/vpnkit/issues/371)
|
||||
|
@ -527,4 +527,4 @@ We did not distribute a 1.12.4 stable release
|
|||
|
||||
* Docker 1.12.0
|
||||
* Docker Machine 0.8.0
|
||||
* Docker Compose 1.8.0
|
||||
* Docker Compose 1.8.0
|
||||
|
|
|
@ -732,7 +732,7 @@ This release contains a Kubernetes upgrade. Note that your local Kubernetes clus
|
|||
- Add an experimental SOCKS server to allow access to container networks, see [docker/for-mac#2670](https://github.com/docker/for-mac/issues/2670#issuecomment-372365274). Also see [docker/for-mac#2721](https://github.com/docker/for-mac/issues/2721)
|
||||
|
||||
* Bug fixes and minor changes
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Preferences > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Preferences > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/image_save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- Fix startup issue with AUFS [docker/for-mac#2804](https://github.com/docker/for-mac/issues/2804)
|
||||
- Fix status bug which could prevent the Kubernetes cluster from starting. Fixes [docker/for-mac#2990](https://github.com/docker/for-mac/issues/2990)
|
||||
- Fix bug which would cause virtual machine logs to be written to RAM rather than disk in some cases, and the virtual machine to hang. See [docker/for-mac#2984](https://github.com/docker/for-mac/issues/2984)
|
||||
|
@ -2441,4 +2441,4 @@ work yet.
|
|||
- Fixed setting hostname
|
||||
|
||||
|
||||
- Fixed permissions on `usr/local` symbolic links
|
||||
- Fixed permissions on `usr/local` symbolic links
|
||||
|
|
|
@ -953,7 +953,7 @@ This release contains a Kubernetes upgrade. Note that your local Kubernetes clus
|
|||
- New Kubernetes menu item allowing to switch Kubernetes context & connect to clusters other than the local one.
|
||||
|
||||
* Bug fixes and minor changes
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Settings > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- AUFS storage driver is deprecated in Docker Desktop and AUFS support will be removed in the next major release. You can continue with AUFS in Docker Desktop 18.06.x, but you will need to reset disk image (in Settings > Reset menu) before updating to the next major update. You can check documentation to [save images](/engine/reference/commandline/image_save/#examples) and [back up volumes](../../storage/volumes.md#back-up-restore-or-migrate-data-volumes)
|
||||
- Fix startup issue with AUFS
|
||||
- Fix status bug which could prevent the kubernetes cluster from starting.
|
||||
- Fix bug which would cause VM logs to be written to RAM rather than disk in some cases, and the VM to hang.
|
||||
|
@ -2602,4 +2602,4 @@ are working on a solution.
|
|||
|
||||
**Networking**
|
||||
|
||||
- live debugging Node.js application
|
||||
- live debugging Node.js application
|
||||
|
|
|
@ -1897,7 +1897,7 @@ CVE-2021-44228](https://www.docker.com/blog/apache-log4j-2-cve-2021-44228/).
|
|||
|
||||
Docker Dashboard incorrectly displays the container memory usage as zero on
|
||||
Hyper-V based machines.
|
||||
You can use the [`docker stats`](../engine/reference/commandline/stats.md)
|
||||
You can use the [`docker stats`](../engine/reference/commandline/container_stats.md)
|
||||
command on the command line as a workaround to view the
|
||||
actual memory usage. See
|
||||
[docker/for-mac#6076](https://github.com/docker/for-mac/issues/6076).
|
||||
|
|
|
@ -330,7 +330,7 @@ as part of your build. `ADD` is better than manually adding files using
|
|||
something like `wget` and `tar`, because it ensures a more precise build cache.
|
||||
`ADD` also has built-in support for checksum validation of the remote
|
||||
resources, and a protocol for parsing branches, tags, and subdirectories from
|
||||
[Git URLs](../../engine/reference/commandline/build.md#git-repositories).
|
||||
[Git URLs](../../engine/reference/commandline/image_build.md#git-repositories).
|
||||
|
||||
The following example uses `ADD` to download a .NET installer. Combined with
|
||||
multi-stage builds, only the .NET runtime remains in the final stage, no
|
||||
|
|
|
@ -115,11 +115,11 @@ $ docker build --build-arg CUSTOM=$VAR -f $DOCKERFILE_PATH -t $IMAGE_NAME .
|
|||
|
||||
> **Important**
|
||||
>
|
||||
> A `hooks/build` file overrides the basic [docker build](../../engine/reference/commandline/build.md) command used by the builder, so you must include a similar build command in the hook or
|
||||
> A `hooks/build` file overrides the basic [docker build](../../engine/reference/commandline/image_build.md) command used by the builder, so you must include a similar build command in the hook or
|
||||
the automated build fails.
|
||||
{ .important }
|
||||
|
||||
Refer to the [docker build documentation](../../engine/reference/commandline/build.md#build-arg)
|
||||
Refer to the [docker build documentation](../../engine/reference/commandline/image_build.md#build-arg)
|
||||
to learn more about Docker build-time variables.
|
||||
|
||||
#### Push to multiple repositories
|
||||
|
@ -157,4 +157,4 @@ you do one of the following:
|
|||
|
||||
```console
|
||||
$ git fetch --unshallow origin
|
||||
```
|
||||
```
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_attach
|
||||
title: docker attach
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/attach/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_build
|
||||
title: docker build
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/build/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,14 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_builder_build
|
||||
title: docker builder build
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_commit
|
||||
title: docker commit
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/commit/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -4,6 +4,7 @@ datafile: docker_container_attach
|
|||
title: docker container attach
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_attach/
|
||||
- /engine/reference/commandline/attach/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_commit
|
|||
title: docker container commit
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_commit/
|
||||
- /engine/reference/commandline/commit/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_cp
|
|||
title: docker container cp
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_cp/
|
||||
- /engine/reference/commandline/cp/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_create
|
|||
title: docker container create
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_create/
|
||||
- /engine/reference/commandline/create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_diff
|
|||
title: docker container diff
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_diff/
|
||||
- /engine/reference/commandline/diff/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_exec
|
|||
title: docker container exec
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_exec/
|
||||
- /engine/reference/commandline/exec/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_export
|
|||
title: docker container export
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_export/
|
||||
- /engine/reference/commandline/export/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_kill
|
|||
title: docker container kill
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_kill/
|
||||
- /engine/reference/commandline/kill/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_logs
|
|||
title: docker container logs
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_logs/
|
||||
- /engine/reference/commandline/logs/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_ls
|
|||
title: docker container ls
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_ls/
|
||||
- /engine/reference/commandline/ps/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_pause
|
|||
title: docker container pause
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_pause/
|
||||
- /engine/reference/commandline/pause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_port
|
|||
title: docker container port
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_port/
|
||||
- /engine/reference/commandline/port/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_rename
|
|||
title: docker container rename
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_rename/
|
||||
- /engine/reference/commandline/rename/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_restart
|
|||
title: docker container restart
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_restart/
|
||||
- /engine/reference/commandline/restart/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_rm
|
|||
title: docker container rm
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
- /engine/reference/commandline/rm/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_run
|
|||
title: docker container run
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
- /engine/reference/commandline/run/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_start
|
|||
title: docker container start
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_start/
|
||||
- /engine/reference/commandline/start/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_stats
|
|||
title: docker container stats
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_stats/
|
||||
- /engine/reference/commandline/stats/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_stop
|
|||
title: docker container stop
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_stop/
|
||||
- /engine/reference/commandline/stop/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_top
|
|||
title: docker container top
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_top/
|
||||
- /engine/reference/commandline/top/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_unpause
|
|||
title: docker container unpause
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_unpause/
|
||||
- /engine/reference/commandline/unpause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_update
|
|||
title: docker container update
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_update/
|
||||
- /engine/reference/commandline/update/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_container_wait
|
|||
title: docker container wait
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/container_wait/
|
||||
- /engine/reference/commandline/wait/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_cp
|
||||
title: docker cp
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/cp/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_create
|
||||
title: docker create
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/create/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_diff
|
||||
title: docker diff
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/diff/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_events
|
||||
title: docker events
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/events/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_exec
|
||||
title: docker exec
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/exec/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_export
|
||||
title: docker export
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/export/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_history
|
||||
title: docker history
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/history/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -4,6 +4,8 @@ datafile: docker_image_build
|
|||
title: docker image build
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_build/
|
||||
- /engine/reference/commandline/build/
|
||||
- /engine/reference/commandline/builder_build/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +15,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_history
|
|||
title: docker image history
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_history/
|
||||
- /engine/reference/commandline/history/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_import
|
|||
title: docker image import
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_import/
|
||||
- /engine/reference/commandline/import/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_load
|
|||
title: docker image load
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_load/
|
||||
- /engine/reference/commandline/load/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_ls
|
|||
title: docker image ls
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_ls/
|
||||
- /engine/reference/commandline/images/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_pull
|
|||
title: docker image pull
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_pull/
|
||||
- /engine/reference/commandline/pull/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_push
|
|||
title: docker image push
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_push/
|
||||
- /engine/reference/commandline/push/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_rm
|
|||
title: docker image rm
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_rm/
|
||||
- /engine/reference/commandline/rmi/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_save
|
|||
title: docker image save
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_save/
|
||||
- /engine/reference/commandline/save/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_image_tag
|
|||
title: docker image tag
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/image_tag/
|
||||
- /engine/reference/commandline/tag/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_images
|
||||
title: docker images
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/images/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_import
|
||||
title: docker import
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/import/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,34 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_info
|
||||
title: docker info
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/info/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
|
||||
|
||||
## Warnings about kernel support
|
||||
|
||||
If your operating system does not enable certain capabilities, you may see
|
||||
warnings such as one of the following, when you run `docker info`:
|
||||
|
||||
```none
|
||||
WARNING: Your kernel does not support swap limit capabilities. Limitation discarded.
|
||||
```
|
||||
|
||||
```none
|
||||
WARNING: No swap limit support
|
||||
```
|
||||
|
||||
You can ignore these warnings unless you actually need the ability to
|
||||
[limit these resources](../../../config/containers/resource_constraints.md), in which case you
|
||||
should consult your operating system's documentation for enabling them.
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_kill
|
||||
title: docker kill
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/kill/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_load
|
||||
title: docker load
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/load/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_logs
|
||||
title: docker logs
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/logs/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_pause
|
||||
title: docker pause
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/pause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_port
|
||||
title: docker port
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/port/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_ps
|
||||
title: docker ps
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/ps/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_pull
|
||||
title: docker pull
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/pull/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_push
|
||||
title: docker push
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/push/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_rename
|
||||
title: docker rename
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/rename/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_restart
|
||||
title: docker restart
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/restart/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_rm
|
||||
title: docker rm
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/rm/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_rmi
|
||||
title: docker rmi
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/rmi/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,20 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_run
|
||||
title: docker run
|
||||
description: Learn all there is to know about the docker run command and how to use
|
||||
it in the Docker CLI.
|
||||
aliases:
|
||||
- /reference/run/
|
||||
- /edge/engine/reference/commandline/run/
|
||||
- /reference/commandline/run/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_save
|
||||
title: docker save
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/save/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_start
|
||||
title: docker start
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/start/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_stats
|
||||
title: docker stats
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/stats/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_stop
|
||||
title: docker stop
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/stop/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -4,6 +4,7 @@ datafile: docker_system_events
|
|||
title: docker system events
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/system_events/
|
||||
- /engine/reference/commandline/events/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_system_info
|
|||
title: docker system info
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/system_info/
|
||||
- /engine/reference/commandline/info/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
|
@ -13,4 +14,4 @@ suggest a change to the text that appears here, open a ticket or pull request
|
|||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
||||
-->
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_tag
|
||||
title: docker tag
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/tag/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_top
|
||||
title: docker top
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/top/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_unpause
|
||||
title: docker unpause
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/unpause/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_update
|
||||
title: docker update
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/update/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -1,16 +0,0 @@
|
|||
---
|
||||
datafolder: engine-cli
|
||||
datafile: docker_wait
|
||||
title: docker wait
|
||||
aliases:
|
||||
- /edge/engine/reference/commandline/wait/
|
||||
layout: cli
|
||||
---
|
||||
|
||||
<!--
|
||||
This page is automatically generated from Docker's source code. If you want to
|
||||
suggest a change to the text that appears here, open a ticket or pull request
|
||||
in the source repository on GitHub:
|
||||
|
||||
https://github.com/docker/cli
|
||||
-->
|
|
@ -82,7 +82,7 @@ Related information:
|
|||
|
||||
- Deep dive into [bind mounts](../../storage/bind-mounts.md)
|
||||
- Learn about using bind mounts in Compose in the [Compose file reference](../../compose/compose-file/_index.md)
|
||||
- Explore using bind mounts via the CLI in the [Docker run reference](/engine/reference/run/#volume-shared-filesystems)
|
||||
- Explore using bind mounts via the CLI in the [Docker run reference](/engine/reference/commandline/container_run/#mount)
|
||||
|
||||
## Next steps
|
||||
|
||||
|
|
|
@ -55,7 +55,7 @@ In this walkthrough, you pushed and shared an image on Docker Hub.
|
|||
Related information:
|
||||
|
||||
- Deep dive into the [Docker Hub manual](../../docker-hub/_index.md)
|
||||
- Learn more about the [docker tag](../../engine/reference/commandline/tag.md)
|
||||
- Learn more about the [docker tag](../../engine/reference/commandline/image_tag.md)
|
||||
command
|
||||
|
||||
## Next steps
|
||||
|
@ -68,4 +68,4 @@ Continue to the language-specific guides to learn how you can use Docker to cont
|
|||
- [Node.js](../../language/nodejs/_index.md)
|
||||
- [PHP](../../language/php/_index.md)
|
||||
- [Python](../../language/python/_index.md)
|
||||
- [Rust](../../language/rust/_index.md)
|
||||
- [Rust](../../language/rust/_index.md)
|
||||
|
|
|
@ -174,7 +174,7 @@ Related information:
|
|||
- [Dockerfile reference](../../engine/reference/builder.md)
|
||||
- [.dockerignore file](../../engine/reference/builder.md#dockerignore-file)
|
||||
- [docker init CLI reference](../../engine/reference/commandline/init.md)
|
||||
- [docker build CLI reference](../../engine/reference/commandline/build.md)
|
||||
- [docker build CLI reference](../../engine/reference/commandline/image_build.md)
|
||||
|
||||
|
||||
## Next steps
|
||||
|
|
|
@ -192,7 +192,7 @@ That’s better! You can now easily identify your container based on the name.
|
|||
In this section, you took a look at running containers. You also took a look at managing containers by starting, stopping, and restarting them. And finally, you looked at naming your containers so they are more easily identifiable.
|
||||
|
||||
Related information:
|
||||
- [docker run CLI reference](../../engine/reference/commandline/run.md)
|
||||
- [docker run CLI reference](../../engine/reference/commandline/container_run.md)
|
||||
|
||||
## Next steps
|
||||
|
||||
|
|
|
@ -195,7 +195,7 @@ Your container will have lines in `/etc/hosts` which define the hostname of the
|
|||
container itself, as well as `localhost` and a few other common things. Custom
|
||||
hosts, defined in `/etc/hosts` on the host machine, aren't inherited by
|
||||
containers. To pass additional hosts into container, refer to [add entries to
|
||||
container hosts file](../engine/reference/commandline/run.md#add-host) in the
|
||||
container hosts file](../engine/reference/commandline/container_run.md#add-host) in the
|
||||
`docker run` reference documentation.
|
||||
|
||||
## Proxy server
|
||||
|
|
|
@ -402,7 +402,7 @@ example also uses Linux hosts, but the same commands work on Windows.
|
|||
The two containers communicate with the overlay network connecting the two
|
||||
hosts. If you run another alpine container on `host2` that is _not detached_,
|
||||
you can ping `alpine1` from `host2` (and here we add the
|
||||
[remove option](/engine/reference/run/#clean-up---rm) for automatic container cleanup):
|
||||
[remove option](/engine/reference/commandline/container_run/#rm) for automatic container cleanup):
|
||||
|
||||
```sh
|
||||
$ docker run -it --rm --name alpine3 --network test-net alpine
|
||||
|
@ -642,4 +642,4 @@ learn about user-defined bridge networks, continue to the
|
|||
|
||||
- [Host networking tutorial](network-tutorial-host.md)
|
||||
- [Standalone networking tutorial](network-tutorial-standalone.md)
|
||||
- [Macvlan networking tutorial](network-tutorial-macvlan.md)
|
||||
- [Macvlan networking tutorial](network-tutorial-macvlan.md)
|
||||
|
|
|
@ -275,8 +275,6 @@ Reference:
|
|||
section:
|
||||
- path: /engine/reference/commandline/docker/
|
||||
title: docker (base command)
|
||||
- path: /engine/reference/commandline/attach/
|
||||
title: docker attach
|
||||
- path: /engine/reference/commandline/build/
|
||||
title: docker build
|
||||
- sectiontitle: docker builder
|
||||
|
@ -333,8 +331,6 @@ Reference:
|
|||
title: docker checkpoint ls
|
||||
- path: /engine/reference/commandline/checkpoint_rm/
|
||||
title: docker checkpoint rm
|
||||
- path: /engine/reference/commandline/commit/
|
||||
title: docker commit
|
||||
- sectiontitle: docker compose
|
||||
section:
|
||||
- path: /compose/reference/
|
||||
|
@ -495,20 +491,8 @@ Reference:
|
|||
title: docker context update
|
||||
- path: /engine/reference/commandline/context_use/
|
||||
title: docker context use
|
||||
- path: /engine/reference/commandline/cp/
|
||||
title: docker cp
|
||||
- path: /engine/reference/commandline/create/
|
||||
title: docker create
|
||||
- path: /engine/reference/commandline/diff/
|
||||
title: docker diff
|
||||
- path: /engine/reference/commandline/events/
|
||||
title: docker events
|
||||
- path: /engine/reference/commandline/exec/
|
||||
title: docker exec
|
||||
- path: /engine/reference/commandline/export/
|
||||
title: docker export
|
||||
- path: /engine/reference/commandline/history/
|
||||
title: docker history
|
||||
- sectiontitle: docker image
|
||||
section:
|
||||
- path: /engine/reference/commandline/image/
|
||||
|
@ -539,24 +523,16 @@ Reference:
|
|||
title: docker image tag
|
||||
- path: /engine/reference/commandline/images/
|
||||
title: docker images
|
||||
- path: /engine/reference/commandline/import/
|
||||
title: docker import
|
||||
- path: /engine/reference/commandline/info/
|
||||
title: docker info
|
||||
- path: /engine/reference/commandline/init/
|
||||
title: docker init (Beta)
|
||||
- path: /engine/reference/commandline/inspect/
|
||||
title: docker inspect
|
||||
- path: /engine/reference/commandline/kill/
|
||||
title: docker kill
|
||||
- path: /engine/reference/commandline/load/
|
||||
title: docker load
|
||||
- path: /engine/reference/commandline/login/
|
||||
title: docker login
|
||||
- path: /engine/reference/commandline/logout/
|
||||
title: docker logout
|
||||
- path: /engine/reference/commandline/logs/
|
||||
title: docker logs
|
||||
- sectiontitle: docker manifest
|
||||
section:
|
||||
- path: /engine/reference/commandline/manifest/
|
||||
|
@ -607,8 +583,6 @@ Reference:
|
|||
title: docker node rm
|
||||
- path: /engine/reference/commandline/node_update/
|
||||
title: docker node update
|
||||
- path: /engine/reference/commandline/pause/
|
||||
title: docker pause
|
||||
- sectiontitle: docker plugin
|
||||
section:
|
||||
- path: /engine/reference/commandline/plugin/
|
||||
|
@ -631,26 +605,14 @@ Reference:
|
|||
title: docker plugin set
|
||||
- path: /engine/reference/commandline/plugin_upgrade/
|
||||
title: docker plugin upgrade
|
||||
- path: /engine/reference/commandline/port/
|
||||
title: docker port
|
||||
- path: /engine/reference/commandline/ps/
|
||||
title: docker ps
|
||||
- path: /engine/reference/commandline/pull/
|
||||
title: docker pull
|
||||
- path: /engine/reference/commandline/push/
|
||||
title: docker push
|
||||
- path: /engine/reference/commandline/rename/
|
||||
title: docker rename
|
||||
- path: /engine/reference/commandline/restart/
|
||||
title: docker restart
|
||||
- path: /engine/reference/commandline/rm/
|
||||
title: docker rm
|
||||
- path: /engine/reference/commandline/rmi/
|
||||
title: docker rmi
|
||||
- path: /engine/reference/commandline/run/
|
||||
title: docker run
|
||||
- path: /engine/reference/commandline/save/
|
||||
title: docker save
|
||||
- sectiontitle: docker scout
|
||||
section:
|
||||
- path: /engine/reference/commandline/scout/
|
||||
|
@ -753,12 +715,6 @@ Reference:
|
|||
title: docker stack rm
|
||||
- path: /engine/reference/commandline/stack_services/
|
||||
title: docker stack services
|
||||
- path: /engine/reference/commandline/start/
|
||||
title: docker start
|
||||
- path: /engine/reference/commandline/stats/
|
||||
title: docker stats
|
||||
- path: /engine/reference/commandline/stop/
|
||||
title: docker stop
|
||||
- sectiontitle: docker swarm
|
||||
section:
|
||||
- path: /engine/reference/commandline/swarm/
|
||||
|
@ -791,10 +747,6 @@ Reference:
|
|||
title: docker system info
|
||||
- path: /engine/reference/commandline/system_prune/
|
||||
title: docker system prune
|
||||
- path: /engine/reference/commandline/tag/
|
||||
title: docker tag
|
||||
- path: /engine/reference/commandline/top/
|
||||
title: docker top
|
||||
- sectiontitle: docker trust
|
||||
section:
|
||||
- path: /engine/reference/commandline/trust/
|
||||
|
@ -817,10 +769,6 @@ Reference:
|
|||
title: docker trust signer add
|
||||
- path: /engine/reference/commandline/trust_signer_remove/
|
||||
title: docker trust signer remove
|
||||
- path: /engine/reference/commandline/unpause/
|
||||
title: docker unpause
|
||||
- path: /engine/reference/commandline/update/
|
||||
title: docker update
|
||||
- path: /engine/reference/commandline/version/
|
||||
title: docker version
|
||||
- sectiontitle: docker volume
|
||||
|
@ -837,8 +785,6 @@ Reference:
|
|||
title: docker volume rm
|
||||
- path: /engine/reference/commandline/volume_update/
|
||||
title: docker volume update
|
||||
- path: /engine/reference/commandline/wait/
|
||||
title: docker wait
|
||||
- title: Dockerfile reference
|
||||
path: /engine/reference/builder/
|
||||
- title: Daemon CLI (dockerd)
|
||||
|
|
Loading…
Reference in New Issue