cli: remove alias stubs

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
David Karlsson 2024-01-05 15:27:46 +01:00
parent fdc73c2002
commit 04de43a394
98 changed files with 124 additions and 738 deletions

View File

@ -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 convention is to name these `<something>.Dockerfile`. You can specify the
Dockerfile filename using the `--file` flag for the `docker build` command. Dockerfile filename using the `--file` flag for the `docker build` command.
Refer to the 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. to learn about the `--file` flag.
> **Note** > **Note**

View File

@ -103,7 +103,7 @@ This is explored later on in this guide.
Related information: 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) - [Build exporters](../exporters/index.md)
## Next steps ## Next steps

View File

@ -160,8 +160,8 @@ container image and created a container from it.
Related information: Related information:
- [Dockerfile reference](../../engine/reference/builder.md) - [Dockerfile reference](../../engine/reference/builder.md)
- [`docker build` CLI reference](../../engine/reference/commandline/build.md) - [`docker build` CLI reference](../../engine/reference/commandline/image_build.md)
- [`docker run` CLI reference](../../engine/reference/commandline/run.md) - [`docker run` CLI reference](../../engine/reference/commandline/container_run.md)
## Next steps ## Next steps

View File

@ -273,7 +273,7 @@ An entry with the ip address and hostname is created in `/etc/hosts` inside cont
Specify a builds container isolation technology. On Linux, the only supported value Specify a builds container isolation technology. On Linux, the only supported value
is `default`. On Windows, acceptable values are `default`, `process` and is `default`. On Windows, acceptable values are `default`, `process` and
`hyperv`. Refer to the `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. for details.
If unspecified, Compose will use the `isolation` value found in the service's definition 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 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 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 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. details.
A full example: A full example:
@ -900,7 +900,7 @@ services:
Specify a containers isolation technology. On Linux, the only supported value Specify a containers isolation technology. On Linux, the only supported value
is `default`. On Windows, acceptable values are `default`, `process` and is `default`. On Windows, acceptable values are `default`, `process` and
`hyperv`. Refer to the `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. for details.
### labels ### 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 ### 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 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. > Added in [version 2.2](compose-versioning.md#version-22) file format.
> >

View File

@ -1339,7 +1339,7 @@ services:
Specify a containers isolation technology. On Linux, the only supported value Specify a containers isolation technology. On Linux, the only supported value
is `default`. On Windows, acceptable values are `default`, `process` and is `default`. On Windows, acceptable values are `default`, `process` and
`hyperv`. Refer to the `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. for details.
### labels ### labels
@ -1904,7 +1904,7 @@ sysctls:
You can only use sysctls that are namespaced in the kernel. Docker does not 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. support changing sysctls inside a container that also modify the host system.
For an overview of supported sysctls, refer to 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 > 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 ### 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 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 ```yaml
user: postgresql user: postgresql

View File

@ -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. - `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. - `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. - `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). - `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/run/#logging-drivers---log-driver). - `log_driver`, like `docker run --log-driver`, lets you specify a [log driver](/engine/reference/commandline/container_run/#log-driver).
### Bug fixes ### Bug fixes

View File

@ -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 Many of these features require your kernel to support Linux capabilities. To
check for support, you can use the 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 is disabled in your kernel, you may see a warning at the end of the output like
the following: the following:

View File

@ -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 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. page has more details about the `docker stats` command.
## Control groups ## Control groups

View File

@ -95,13 +95,13 @@ description for commands that support the `--filter` flag:
- [`docker config ls`](../engine/reference/commandline/config_ls.md) - [`docker config ls`](../engine/reference/commandline/config_ls.md)
- [`docker container prune`](../engine/reference/commandline/container_prune.md) - [`docker container prune`](../engine/reference/commandline/container_prune.md)
- [`docker image prune`](../engine/reference/commandline/image_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 ls`](../engine/reference/commandline/network_ls.md)
- [`docker network prune`](../engine/reference/commandline/network_prune.md) - [`docker network prune`](../engine/reference/commandline/network_prune.md)
- [`docker node ls`](../engine/reference/commandline/node_ls.md) - [`docker node ls`](../engine/reference/commandline/node_ls.md)
- [`docker node ps`](../engine/reference/commandline/node_ps.md) - [`docker node ps`](../engine/reference/commandline/node_ps.md)
- [`docker plugin ls`](../engine/reference/commandline/plugin_ls.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 search`](../engine/reference/commandline/search.md)
- [`docker secret ls`](../engine/reference/commandline/secret_ls.md) - [`docker secret ls`](../engine/reference/commandline/secret_ls.md)
- [`docker service ls`](../engine/reference/commandline/service_ls.md) - [`docker service ls`](../engine/reference/commandline/service_ls.md)

View File

@ -80,15 +80,15 @@ Labels on Swarm nodes and services can be updated dynamically.
- Images and containers - Images and containers
- [Adding labels to images](../engine/reference/builder.md#label) - [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) - [Inspecting labels on images or containers](../engine/reference/commandline/inspect.md)
- [Filtering images by label](../engine/reference/commandline/images.md#filter) - [Filtering images by label](../engine/reference/commandline/image_ls.md#filter)
- [Filtering containers by label](../engine/reference/commandline/ps.md#filter) - [Filtering containers by label](../engine/reference/commandline/container_ls.md#filter)
- Local Docker daemons - Local Docker daemons
- [Adding labels to a Docker daemon at runtime](../engine/reference/commandline/dockerd.md) - [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 - Volumes

View File

@ -14,7 +14,7 @@ computer, for example.
## Save your data ## 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 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 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. 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). 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) Make sure to configure the [repository's visibility as "private"](../docker-hub/repos/index.md)
for images that should not be publicly accessible. 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. 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 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 ## 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. 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. 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). 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.

View File

@ -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. | |`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.| | `allowExperimentalFeatures`| | If `value` is set to `false`, experimental features are disabled.|
| `allowBetaFeatures`| | If `value` is set to `false`, beta 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 ### Step three: Re-launch Docker Desktop
>**Note** >**Note**

View File

@ -162,5 +162,5 @@ container to random ports on the host.
$ docker run -d -P --name webserver nginx $ docker run -d -P --name webserver nginx
``` ```
See the [run command](../engine/reference/commandline/run.md) for more details on See the [run command](../engine/reference/commandline/container_run.md) for more details on
publish options used with `docker run`. publish options used with `docker run`.

View File

@ -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) - 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 * 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. - 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 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) - Fix network connection leak triggered by haproxy TCP health-checks [docker/for-mac#1132](https://github.com/docker/for-mac/issues/1132)

View File

@ -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) - 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 * 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 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 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) - 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)

View File

@ -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) - 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 * 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 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 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) - 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)

View File

@ -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. - New Kubernetes menu item allowing to switch Kubernetes context & connect to clusters other than the local one.
* Bug fixes and minor changes * 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 startup issue with AUFS
- Fix status bug which could prevent the kubernetes cluster from starting. - 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. - Fix bug which would cause VM logs to be written to RAM rather than disk in some cases, and the VM to hang.

View File

@ -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 Docker Dashboard incorrectly displays the container memory usage as zero on
Hyper-V based machines. 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 command on the command line as a workaround to view the
actual memory usage. See actual memory usage. See
[docker/for-mac#6076](https://github.com/docker/for-mac/issues/6076). [docker/for-mac#6076](https://github.com/docker/for-mac/issues/6076).

View File

@ -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. 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 `ADD` also has built-in support for checksum validation of the remote
resources, and a protocol for parsing branches, tags, and subdirectories from 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 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 multi-stage builds, only the .NET runtime remains in the final stage, no

View File

@ -115,11 +115,11 @@ $ docker build --build-arg CUSTOM=$VAR -f $DOCKERFILE_PATH -t $IMAGE_NAME .
> **Important** > **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. the automated build fails.
{ .important } { .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. to learn more about Docker build-time variables.
#### Push to multiple repositories #### Push to multiple repositories

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -4,6 +4,7 @@ datafile: docker_container_attach
title: docker container attach title: docker container attach
aliases: aliases:
- /edge/engine/reference/commandline/container_attach/ - /edge/engine/reference/commandline/container_attach/
- /engine/reference/commandline/attach/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_commit
title: docker container commit title: docker container commit
aliases: aliases:
- /edge/engine/reference/commandline/container_commit/ - /edge/engine/reference/commandline/container_commit/
- /engine/reference/commandline/commit/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_cp
title: docker container cp title: docker container cp
aliases: aliases:
- /edge/engine/reference/commandline/container_cp/ - /edge/engine/reference/commandline/container_cp/
- /engine/reference/commandline/cp/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_create
title: docker container create title: docker container create
aliases: aliases:
- /edge/engine/reference/commandline/container_create/ - /edge/engine/reference/commandline/container_create/
- /engine/reference/commandline/create/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_diff
title: docker container diff title: docker container diff
aliases: aliases:
- /edge/engine/reference/commandline/container_diff/ - /edge/engine/reference/commandline/container_diff/
- /engine/reference/commandline/diff/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_exec
title: docker container exec title: docker container exec
aliases: aliases:
- /edge/engine/reference/commandline/container_exec/ - /edge/engine/reference/commandline/container_exec/
- /engine/reference/commandline/exec/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_export
title: docker container export title: docker container export
aliases: aliases:
- /edge/engine/reference/commandline/container_export/ - /edge/engine/reference/commandline/container_export/
- /engine/reference/commandline/export/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_kill
title: docker container kill title: docker container kill
aliases: aliases:
- /edge/engine/reference/commandline/container_kill/ - /edge/engine/reference/commandline/container_kill/
- /engine/reference/commandline/kill/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_logs
title: docker container logs title: docker container logs
aliases: aliases:
- /edge/engine/reference/commandline/container_logs/ - /edge/engine/reference/commandline/container_logs/
- /engine/reference/commandline/logs/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_ls
title: docker container ls title: docker container ls
aliases: aliases:
- /edge/engine/reference/commandline/container_ls/ - /edge/engine/reference/commandline/container_ls/
- /engine/reference/commandline/ps/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_pause
title: docker container pause title: docker container pause
aliases: aliases:
- /edge/engine/reference/commandline/container_pause/ - /edge/engine/reference/commandline/container_pause/
- /engine/reference/commandline/pause/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_port
title: docker container port title: docker container port
aliases: aliases:
- /edge/engine/reference/commandline/container_port/ - /edge/engine/reference/commandline/container_port/
- /engine/reference/commandline/port/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_rename
title: docker container rename title: docker container rename
aliases: aliases:
- /edge/engine/reference/commandline/container_rename/ - /edge/engine/reference/commandline/container_rename/
- /engine/reference/commandline/rename/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_restart
title: docker container restart title: docker container restart
aliases: aliases:
- /edge/engine/reference/commandline/container_restart/ - /edge/engine/reference/commandline/container_restart/
- /engine/reference/commandline/restart/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_rm
title: docker container rm title: docker container rm
aliases: aliases:
- /edge/engine/reference/commandline/container_rm/ - /edge/engine/reference/commandline/container_rm/
- /engine/reference/commandline/rm/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_run
title: docker container run title: docker container run
aliases: aliases:
- /edge/engine/reference/commandline/container_rm/ - /edge/engine/reference/commandline/container_rm/
- /engine/reference/commandline/run/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_start
title: docker container start title: docker container start
aliases: aliases:
- /edge/engine/reference/commandline/container_start/ - /edge/engine/reference/commandline/container_start/
- /engine/reference/commandline/start/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_stats
title: docker container stats title: docker container stats
aliases: aliases:
- /edge/engine/reference/commandline/container_stats/ - /edge/engine/reference/commandline/container_stats/
- /engine/reference/commandline/stats/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_stop
title: docker container stop title: docker container stop
aliases: aliases:
- /edge/engine/reference/commandline/container_stop/ - /edge/engine/reference/commandline/container_stop/
- /engine/reference/commandline/stop/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_top
title: docker container top title: docker container top
aliases: aliases:
- /edge/engine/reference/commandline/container_top/ - /edge/engine/reference/commandline/container_top/
- /engine/reference/commandline/top/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_unpause
title: docker container unpause title: docker container unpause
aliases: aliases:
- /edge/engine/reference/commandline/container_unpause/ - /edge/engine/reference/commandline/container_unpause/
- /engine/reference/commandline/unpause/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_update
title: docker container update title: docker container update
aliases: aliases:
- /edge/engine/reference/commandline/container_update/ - /edge/engine/reference/commandline/container_update/
- /engine/reference/commandline/update/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_container_wait
title: docker container wait title: docker container wait
aliases: aliases:
- /edge/engine/reference/commandline/container_wait/ - /edge/engine/reference/commandline/container_wait/
- /engine/reference/commandline/wait/
layout: cli layout: cli
--- ---

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -4,6 +4,8 @@ datafile: docker_image_build
title: docker image build title: docker image build
aliases: aliases:
- /edge/engine/reference/commandline/image_build/ - /edge/engine/reference/commandline/image_build/
- /engine/reference/commandline/build/
- /engine/reference/commandline/builder_build/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_history
title: docker image history title: docker image history
aliases: aliases:
- /edge/engine/reference/commandline/image_history/ - /edge/engine/reference/commandline/image_history/
- /engine/reference/commandline/history/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_import
title: docker image import title: docker image import
aliases: aliases:
- /edge/engine/reference/commandline/image_import/ - /edge/engine/reference/commandline/image_import/
- /engine/reference/commandline/import/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_load
title: docker image load title: docker image load
aliases: aliases:
- /edge/engine/reference/commandline/image_load/ - /edge/engine/reference/commandline/image_load/
- /engine/reference/commandline/load/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_ls
title: docker image ls title: docker image ls
aliases: aliases:
- /edge/engine/reference/commandline/image_ls/ - /edge/engine/reference/commandline/image_ls/
- /engine/reference/commandline/images/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_pull
title: docker image pull title: docker image pull
aliases: aliases:
- /edge/engine/reference/commandline/image_pull/ - /edge/engine/reference/commandline/image_pull/
- /engine/reference/commandline/pull/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_push
title: docker image push title: docker image push
aliases: aliases:
- /edge/engine/reference/commandline/image_push/ - /edge/engine/reference/commandline/image_push/
- /engine/reference/commandline/push/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_rm
title: docker image rm title: docker image rm
aliases: aliases:
- /edge/engine/reference/commandline/image_rm/ - /edge/engine/reference/commandline/image_rm/
- /engine/reference/commandline/rmi/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_save
title: docker image save title: docker image save
aliases: aliases:
- /edge/engine/reference/commandline/image_save/ - /edge/engine/reference/commandline/image_save/
- /engine/reference/commandline/save/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_image_tag
title: docker image tag title: docker image tag
aliases: aliases:
- /edge/engine/reference/commandline/image_tag/ - /edge/engine/reference/commandline/image_tag/
- /engine/reference/commandline/tag/
layout: cli layout: cli
--- ---

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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.

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -4,6 +4,7 @@ datafile: docker_system_events
title: docker system events title: docker system events
aliases: aliases:
- /edge/engine/reference/commandline/system_events/ - /edge/engine/reference/commandline/system_events/
- /engine/reference/commandline/events/
layout: cli layout: cli
--- ---

View File

@ -4,6 +4,7 @@ datafile: docker_system_info
title: docker system info title: docker system info
aliases: aliases:
- /edge/engine/reference/commandline/system_info/ - /edge/engine/reference/commandline/system_info/
- /engine/reference/commandline/info/
layout: cli layout: cli
--- ---

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -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
-->

View File

@ -82,7 +82,7 @@ Related information:
- Deep dive into [bind mounts](../../storage/bind-mounts.md) - 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) - 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 ## Next steps

View File

@ -55,7 +55,7 @@ In this walkthrough, you pushed and shared an image on Docker Hub.
Related information: Related information:
- Deep dive into the [Docker Hub manual](../../docker-hub/_index.md) - 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 command
## Next steps ## Next steps

View File

@ -174,7 +174,7 @@ Related information:
- [Dockerfile reference](../../engine/reference/builder.md) - [Dockerfile reference](../../engine/reference/builder.md)
- [.dockerignore file](../../engine/reference/builder.md#dockerignore-file) - [.dockerignore file](../../engine/reference/builder.md#dockerignore-file)
- [docker init CLI reference](../../engine/reference/commandline/init.md) - [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 ## Next steps

View File

@ -192,7 +192,7 @@ Thats 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. 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: Related information:
- [docker run CLI reference](../../engine/reference/commandline/run.md) - [docker run CLI reference](../../engine/reference/commandline/container_run.md)
## Next steps ## Next steps

View File

@ -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 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 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 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. `docker run` reference documentation.
## Proxy server ## Proxy server

View File

@ -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 The two containers communicate with the overlay network connecting the two
hosts. If you run another alpine container on `host2` that is _not detached_, hosts. If you run another alpine container on `host2` that is _not detached_,
you can ping `alpine1` from `host2` (and here we add the 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 ```sh
$ docker run -it --rm --name alpine3 --network test-net alpine $ docker run -it --rm --name alpine3 --network test-net alpine

View File

@ -275,8 +275,6 @@ Reference:
section: section:
- path: /engine/reference/commandline/docker/ - path: /engine/reference/commandline/docker/
title: docker (base command) title: docker (base command)
- path: /engine/reference/commandline/attach/
title: docker attach
- path: /engine/reference/commandline/build/ - path: /engine/reference/commandline/build/
title: docker build title: docker build
- sectiontitle: docker builder - sectiontitle: docker builder
@ -333,8 +331,6 @@ Reference:
title: docker checkpoint ls title: docker checkpoint ls
- path: /engine/reference/commandline/checkpoint_rm/ - path: /engine/reference/commandline/checkpoint_rm/
title: docker checkpoint rm title: docker checkpoint rm
- path: /engine/reference/commandline/commit/
title: docker commit
- sectiontitle: docker compose - sectiontitle: docker compose
section: section:
- path: /compose/reference/ - path: /compose/reference/
@ -495,20 +491,8 @@ Reference:
title: docker context update title: docker context update
- path: /engine/reference/commandline/context_use/ - path: /engine/reference/commandline/context_use/
title: docker 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/ - path: /engine/reference/commandline/exec/
title: docker exec title: docker exec
- path: /engine/reference/commandline/export/
title: docker export
- path: /engine/reference/commandline/history/
title: docker history
- sectiontitle: docker image - sectiontitle: docker image
section: section:
- path: /engine/reference/commandline/image/ - path: /engine/reference/commandline/image/
@ -539,24 +523,16 @@ Reference:
title: docker image tag title: docker image tag
- path: /engine/reference/commandline/images/ - path: /engine/reference/commandline/images/
title: docker images title: docker images
- path: /engine/reference/commandline/import/
title: docker import
- path: /engine/reference/commandline/info/ - path: /engine/reference/commandline/info/
title: docker info title: docker info
- path: /engine/reference/commandline/init/ - path: /engine/reference/commandline/init/
title: docker init (Beta) title: docker init (Beta)
- path: /engine/reference/commandline/inspect/ - path: /engine/reference/commandline/inspect/
title: docker 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/ - path: /engine/reference/commandline/login/
title: docker login title: docker login
- path: /engine/reference/commandline/logout/ - path: /engine/reference/commandline/logout/
title: docker logout title: docker logout
- path: /engine/reference/commandline/logs/
title: docker logs
- sectiontitle: docker manifest - sectiontitle: docker manifest
section: section:
- path: /engine/reference/commandline/manifest/ - path: /engine/reference/commandline/manifest/
@ -607,8 +583,6 @@ Reference:
title: docker node rm title: docker node rm
- path: /engine/reference/commandline/node_update/ - path: /engine/reference/commandline/node_update/
title: docker node update title: docker node update
- path: /engine/reference/commandline/pause/
title: docker pause
- sectiontitle: docker plugin - sectiontitle: docker plugin
section: section:
- path: /engine/reference/commandline/plugin/ - path: /engine/reference/commandline/plugin/
@ -631,26 +605,14 @@ Reference:
title: docker plugin set title: docker plugin set
- path: /engine/reference/commandline/plugin_upgrade/ - path: /engine/reference/commandline/plugin_upgrade/
title: docker plugin upgrade title: docker plugin upgrade
- path: /engine/reference/commandline/port/
title: docker port
- path: /engine/reference/commandline/ps/ - path: /engine/reference/commandline/ps/
title: docker ps title: docker ps
- path: /engine/reference/commandline/pull/ - path: /engine/reference/commandline/pull/
title: docker pull title: docker pull
- path: /engine/reference/commandline/push/ - path: /engine/reference/commandline/push/
title: docker 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/ - path: /engine/reference/commandline/run/
title: docker run title: docker run
- path: /engine/reference/commandline/save/
title: docker save
- sectiontitle: docker scout - sectiontitle: docker scout
section: section:
- path: /engine/reference/commandline/scout/ - path: /engine/reference/commandline/scout/
@ -753,12 +715,6 @@ Reference:
title: docker stack rm title: docker stack rm
- path: /engine/reference/commandline/stack_services/ - path: /engine/reference/commandline/stack_services/
title: docker 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 - sectiontitle: docker swarm
section: section:
- path: /engine/reference/commandline/swarm/ - path: /engine/reference/commandline/swarm/
@ -791,10 +747,6 @@ Reference:
title: docker system info title: docker system info
- path: /engine/reference/commandline/system_prune/ - path: /engine/reference/commandline/system_prune/
title: docker 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 - sectiontitle: docker trust
section: section:
- path: /engine/reference/commandline/trust/ - path: /engine/reference/commandline/trust/
@ -817,10 +769,6 @@ Reference:
title: docker trust signer add title: docker trust signer add
- path: /engine/reference/commandline/trust_signer_remove/ - path: /engine/reference/commandline/trust_signer_remove/
title: docker 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/ - path: /engine/reference/commandline/version/
title: docker version title: docker version
- sectiontitle: docker volume - sectiontitle: docker volume
@ -837,8 +785,6 @@ Reference:
title: docker volume rm title: docker volume rm
- path: /engine/reference/commandline/volume_update/ - path: /engine/reference/commandline/volume_update/
title: docker volume update title: docker volume update
- path: /engine/reference/commandline/wait/
title: docker wait
- title: Dockerfile reference - title: Dockerfile reference
path: /engine/reference/builder/ path: /engine/reference/builder/
- title: Daemon CLI (dockerd) - title: Daemon CLI (dockerd)