mirror of https://github.com/docker/docs.git
Merge branch 'master' into fix-azure-cluster-roles
This commit is contained in:
commit
2ceb647961
|
@ -351,7 +351,7 @@ volume: |
|
|||
A volume is a specially-designated directory within one or more containers
|
||||
that bypasses the Union File System. Volumes are designed to persist data,
|
||||
independent of the container's life cycle. Docker therefore never automatically
|
||||
delete volumes when you remove a container, nor will it "garbage collect"
|
||||
deletes volumes when you remove a container, nor will it "garbage collect"
|
||||
volumes that are no longer referenced by a container.
|
||||
*Also known as: data volume*
|
||||
|
||||
|
|
|
@ -1410,6 +1410,10 @@ manuals:
|
|||
title: Troubleshoot with logs
|
||||
- path: /ee/ucp/admin/monitor-and-troubleshoot/troubleshoot-configurations/
|
||||
title: Troubleshoot configurations
|
||||
- title: Back up UCP
|
||||
path: /ee/admin/backup/back-up-ucp/
|
||||
- title: Restore UCP
|
||||
path: /ee/admin/restore/restore-ucp/
|
||||
- title: CLI reference
|
||||
path: /reference/ucp/3.2/cli/
|
||||
nosync: true
|
||||
|
|
|
@ -38,12 +38,12 @@ $ export CLUSTER_SECRETS_FILE=~/.my-secrets/my-azure-creds.sh
|
|||
$ docker cluster create ....
|
||||
```
|
||||
|
||||
Docker Cluster will bindmount this file into its container runtime to inject the
|
||||
Docker cluster will bindmount this file into its container runtime to inject the
|
||||
credential data as needed.
|
||||
|
||||
## Create a cluster
|
||||
|
||||
When you create a Docker Cluster in Azure, the cluster created has:
|
||||
When you create a docker cluster in Azure, the cluster created has:
|
||||
- 3 UCP Managers
|
||||
- 3 Workers
|
||||
- 3 DTR Replicas
|
||||
|
@ -96,7 +96,7 @@ The values will be substituted in the cluster definition. This makes it
|
|||
easy to define a reusable cluster definition and then change the variables
|
||||
to create multiple instances of a cluster.
|
||||
|
||||
Run `docker cluster create --file cluster.yml --name quickstart`.
|
||||
Run `docker cluster create --file cluster.yml --name quickstart`
|
||||
|
||||
$ docker cluster create --file cluster.yml --name quickstart
|
||||
Please provide a value for ucp_password:
|
||||
|
@ -136,21 +136,21 @@ After about 15-20 minutes, Docker Enterprise installation will complete:
|
|||
|
||||
e58dd2a77567
|
||||
|
||||
After all operations complete successfully, the cluster id will be the last statement
|
||||
to print. You can log in to the URL and begin interacting with the cluster.
|
||||
After all operations complete succesfully, the cluster id will be the last statement
|
||||
to print. You can login to the URL and begin interacting with the cluster.
|
||||
|
||||
## View cluster information
|
||||
|
||||
To see an inventory of the current clusters you've created, run `docker cluster ls`.
|
||||
To see an inventory of the current clusters you've created, run `docker cluster ls`
|
||||
|
||||
$ docker cluster ls
|
||||
ID NAME PROVIDER ENDPOINT STATE
|
||||
e58dd2a77567 quickstart azurerm https://ucp-e58dd2a77567-y4pl.centralus.cloudapp.azure.com running
|
||||
|
||||
To see detailed information about an individual cluster, run `docker cluster inspect quickstart`.
|
||||
To see detailed information about an individual cluster, run `docker cluster inspect quickstart`
|
||||
|
||||
```yaml
|
||||
$ docker cluster inspect quickstart
|
||||
```yaml
|
||||
name: quickstart
|
||||
shortid: e58dd2a77567
|
||||
variable:
|
||||
|
@ -218,13 +218,13 @@ The information displayed by `docker cluster inspect` can be used as a cluster d
|
|||
|
||||
## Use context
|
||||
|
||||
Docker Cluster creates a context on your local machine. To use this context, and interact with the cluster, run `docker context use quickstart`.
|
||||
Docker cluster creates a context on your local machine. To use this context, and interact with the cluster, run `docker context use quickstart`
|
||||
|
||||
$ docker context use quickstart
|
||||
quickstart
|
||||
Current context is now "quickstart"
|
||||
|
||||
To verify that the client is connected to the cluster, run `docker version`.
|
||||
To verify that the client is connected to the cluster, run `docker version`
|
||||
|
||||
```bash
|
||||
$ docker version
|
||||
|
@ -302,7 +302,7 @@ resource:
|
|||
```
|
||||
|
||||
Since the cluster is already created, the next step is to `update` the cluster's
|
||||
desired state. Run `docker cluster update quickstart --file cluster.yml`.
|
||||
desired state. Run `docker cluster update quickstart --file cluster.yml`
|
||||
|
||||
$ docker cluster update quickstart --file cluster.yml
|
||||
Docker Enterprise Platform 3.0
|
||||
|
@ -310,7 +310,7 @@ desired state. Run `docker cluster update quickstart --file cluster.yml`.
|
|||
Planning cluster on azure [OK]
|
||||
Updating: [================== ] 30%
|
||||
|
||||
After about 10 minutes, the update operation adds the new nodes and joins them to the cluster:
|
||||
After about 10 minutes the update operation adds the new nodes and joins them to the cluster:
|
||||
|
||||
$ docker cluster update quickstart --file examples/docs.yml
|
||||
Please provide a value for ucp_password
|
||||
|
@ -325,7 +325,7 @@ After about 10 minutes, the update operation adds the new nodes and joins them t
|
|||
|
||||
e58dd2a77567
|
||||
|
||||
Run `docker cluster inspect e58dd2a77567` to view increased worker count.
|
||||
A quick `docker cluster inspect e58dd2a77567` will show the worker count increased:
|
||||
|
||||
```yaml
|
||||
...
|
||||
|
@ -340,7 +340,7 @@ Run `docker cluster inspect e58dd2a77567` to view increased worker count.
|
|||
|
||||
## Backup a cluster
|
||||
|
||||
Before we proceed with more operations on the cluster, let's take a backup of the running cluster. To create a full backup of the cluster, run `docker cluster backup quickstart --file "backup-$(date '+%Y-%m-%d').tar.gz" `.
|
||||
Before we proceed with more operations on the cluster, let's take a backup of the running cluster. To create a full backup of the cluster, run `docker cluster backup quickstart --file "backup-$(date '+%Y-%m-%d').tar.gz" `
|
||||
|
||||
Provide a passphrase to encrypt the UCP backup.
|
||||
|
||||
|
@ -353,7 +353,7 @@ Provide a passphrase to encrypt the UCP backup.
|
|||
|
||||
Save the backups on external storage for disaster recovery.
|
||||
|
||||
To restore a cluster, run `docker cluster restore quickstart --file backup-2019-05-07.tar.gz`.
|
||||
To restore a cluster, run `docker cluster restore quickstart --file backup-2019-05-07.tar.gz`
|
||||
|
||||
Provide the passphrase from the backup step to decrypt the UCP backup.
|
||||
|
||||
|
@ -371,7 +371,7 @@ cluster:
|
|||
version: docker/ucp:3.2.0
|
||||
```
|
||||
|
||||
Run `docker cluster update quickstart --file cluster.yml `.
|
||||
Run `docker cluster update quickstart --file cluster.yml `
|
||||
|
||||
$ docker cluster update quickstart --file examples/docs.yml
|
||||
Please provide a value for ucp_password
|
||||
|
@ -388,7 +388,7 @@ Run `docker cluster update quickstart --file cluster.yml `.
|
|||
|
||||
## Destroy a cluster
|
||||
|
||||
When the cluster has reached end-of-life, run `docker cluster rm quickstart`.
|
||||
When the cluster has reached end-of-life, run `docker cluster rm quickstart`
|
||||
|
||||
$ docker cluster rm quickstart
|
||||
Removing quickstart
|
||||
|
|
|
@ -87,4 +87,4 @@ upgrade. The command is the same as for a minor upgrade.
|
|||
|
||||
## Where to go next
|
||||
|
||||
* [Release notes](../release-notes.md)
|
||||
* [Release notes](../release-notes/#version-24.md)
|
||||
|
|
|
@ -96,4 +96,4 @@ After upgrading DTR, you need to re-download the vulnerability database.
|
|||
|
||||
## Where to go next
|
||||
|
||||
* [Release notes](../release-notes.md)
|
||||
* [Release notes](../release-notes/#version-25.md)
|
||||
|
|
|
@ -40,7 +40,7 @@ to avoid any business impacts.
|
|||
|
||||
> Upgrade Best Practices
|
||||
>
|
||||
> There are [important changes to the upgrade process](/ee/upgrade) that, if not correctly followed, can have impact on the availability of applications running on the Swarm during upgrades. These constraints impact any upgrades coming from any version before `18.09` to version `18.09` or greater. See [Cluster Upgrade Best Practices](/ee/upgrade.md#cluster-upgrade-best-practices) for more details. Additionally, to ensure high availability during the DTR upgrade, you can also drain the DTR replicas and move their workloads to updated workers. To do this, you can join new workers as DTR replicas to your existing cluster and then remove the old replicas. See [docker/dtr join](/reference/dtr/2.6/cli/join) and [docker/dtr remove](/reference/dtr/2.6/cli/remove) for command options and details.
|
||||
> There are [important changes to the upgrade process](/ee/upgrade) that, if not correctly followed, can have impact on the availability of applications running on the Swarm during upgrades. These constraints impact any upgrades coming from any version before `18.09` to version `18.09` or greater. See [Cluster Upgrade Best Practices](/ee/upgrade.md#cluster-upgrade-best-practices) for more details. Additionally, to ensure high availability during the DTR upgrade, you can also drain the DTR replicas and move their workloads to updated workers. To do this, you can join new workers as DTR replicas to your existing cluster and then remove the old replicas. See [docker/dtr join](/v18.09/reference/dtr/2.6/cli/join) and [docker/dtr remove](/v18.09/reference/dtr/2.6/cli/remove) for command options and details.
|
||||
|
||||
## Minor upgrade
|
||||
|
||||
|
@ -54,7 +54,7 @@ are trying to upgrade to. [Check the compatibility matrix](https://success.docke
|
|||
### Step 1. Upgrade DTR to {{ previous_version }} if necessary
|
||||
|
||||
Make sure you are running DTR {{ previous_version }}. If that is not the case,
|
||||
[upgrade your installation to the {{ previous_version }} version](../{{ previous_version }}/guides/admin/upgrade/).
|
||||
[upgrade your installation to the {{ previous_version }} version](/datacenter/dtr/{{ previous_version }}/guides/admin/upgrade/).
|
||||
|
||||
### Step 2. Upgrade DTR
|
||||
|
||||
|
@ -79,7 +79,7 @@ docker run -it --rm \
|
|||
|
||||
By default the upgrade command runs in interactive mode and prompts you for
|
||||
any necessary information. You can also check the
|
||||
[reference documentation](/reference/dtr/2.6/cli/index.md) for other existing flags.
|
||||
[reference documentation](/v18.09/reference/dtr/2.6/cli/index.md) for other existing flags.
|
||||
|
||||
The upgrade command will start replacing every container in your DTR cluster,
|
||||
one replica at a time. It will also perform certain data migrations. If anything
|
||||
|
@ -89,7 +89,7 @@ command and it will resume from where it left off.
|
|||
|
||||
#### Metadata Store Migration
|
||||
|
||||
When upgrading from `2.5` to `2.6`, the system will run a `metadatastoremigration` job after a successful upgrade. This involves migrating the blob links for your images which is necessary for online garbage collection. With `2.6`, you can log in to the DTR web interface and navigate to **System > Job Logs** to check the status of the `metadatastoremigration` job. See [Audit Jobs via the Web Interface](/ee/dtr/admin/manage-jobs/audit-jobs-via-ui/) for more details.
|
||||
When upgrading from `2.5` to `2.6`, the system will run a `metadatastoremigration` job after a successful upgrade. This involves migrating the blob links for your images which is necessary for online garbage collection. With `2.6`, you can log in to the DTR web interface and navigate to **System > Job Logs** to check the status of the `metadatastoremigration` job. See [Audit Jobs via the Web Interface](/manage-jobs/audit-jobs-via-ui/) for more details.
|
||||
|
||||
{: .with-border}
|
||||
|
||||
|
@ -102,7 +102,7 @@ If the three attempts fail, you will have to retrigger the `metadatastoremigrati
|
|||
```bash
|
||||
curl https://<dtr-external-url>/api/v0/jobs -X POST \
|
||||
-u username:accesstoken -H 'Content-Type':'application/json' -d \
|
||||
'{"action": "metadatastoremigration"}'
|
||||
'{"action": "metadatastoremigration"}'
|
||||
```
|
||||
Alternatively, select **API** from the bottom left navigation pane of the DTR web interface and use the Swagger UI to send your API request.
|
||||
|
||||
|
@ -113,7 +113,7 @@ upgrade. The command is the same as for a minor upgrade.
|
|||
|
||||
## DTR cache upgrade
|
||||
|
||||
If you have previously [deployed a cache](/ee/dtr/admin/configure/deploy-caches/), make sure to [upgrade the node dedicated for your cache](/ee/upgrade) to keep it in sync with your upstream DTR replicas. This prevents authentication errors and other weird behaviors.
|
||||
If you have previously [deployed a cache](/admin/configure/deploy-caches/), make sure to [upgrade the node dedicated for your cache](/ee/upgrade) to keep it in sync with your upstream DTR replicas. This prevents authentication errors and other weird behaviors.
|
||||
|
||||
## Download the vulnerability database
|
||||
|
||||
|
|
|
@ -15,8 +15,8 @@ most benefits from Docker.
|
|||
- Learn to [build an image from a Dockerfile](/get-started/part2.md){: target="_blank" class="_"}
|
||||
- Use [multistage builds](/engine/userguide/eng-image/multistage-build.md){: target="_blank" class="_"} to keep your images lean
|
||||
- Manage application data using [volumes](/engine/admin/volumes/volumes.md) and [bind mounts](/engine/admin/volumes/bind-mounts.md){: target="_blank" class="_"}
|
||||
- [Scale your app](/get-started/part3.md){: target="_blank" class="_"} as a swarm service
|
||||
- [Define your app stack](/get-started/part5.md){: target="_blank" class="_"} using a compose file
|
||||
- [Scale your app](/get-started/part3.md){: target="_blank" class="_"} with kubernetes
|
||||
- [Scale your app](/get-started/part4.md){: target="_blank" class="_"} as a swarm service
|
||||
- General application development best practices
|
||||
|
||||
## Learn about language-specific app development with Docker
|
||||
|
|
|
@ -15,7 +15,7 @@ notes](release-notes). For Docker Desktop system requirements, see
|
|||
### Docker Desktop Community 2.1.4.0
|
||||
2019-10-15
|
||||
|
||||
[Download](https://download.docker.com/mac/edge/39097/Docker.dmg)
|
||||
[Download](https://download.docker.com/mac/edge/39357/Docker.dmg)
|
||||
|
||||
### Upgrades
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ notes](release-notes). For Docker Desktop system requirements, see
|
|||
### Docker Desktop Community 2.1.4.0
|
||||
2019-10-15
|
||||
|
||||
[Download](https://download.docker.com/win/edge/39097/Docker%20Desktop%20Installer.exe)
|
||||
[Download](https://download.docker.com/win/edge/39357/Docker%20Desktop%20Installer.exe)
|
||||
|
||||
### Upgrades
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ are trying to upgrade to. [Check the compatibility matrix](https://success.docke
|
|||
### Step 1. Upgrade DTR to {{ previous_version }} if necessary
|
||||
|
||||
Make sure you are running DTR {{ previous_version }}. If that is not the case,
|
||||
[upgrade your installation to the {{ previous_version }} version](../{{ previous_version }}/guides/admin/upgrade/).
|
||||
[upgrade your installation to the {{ previous_version }} version](/datacenter/dtr/{{ previous_version }}/guides/admin/upgrade/).
|
||||
|
||||
### Step 2. Upgrade DTR
|
||||
|
||||
|
@ -102,7 +102,7 @@ If the three attempts fail, you will have to retrigger the `metadatastoremigrati
|
|||
```bash
|
||||
curl https://<dtr-external-url>/api/v0/jobs -X POST \
|
||||
-u username:accesstoken -H 'Content-Type':'application/json' -d \
|
||||
'{"action": "metadatastoremigration"}'
|
||||
'{"action": "metadatastoremigration"}'
|
||||
```
|
||||
Alternatively, select **API** from the bottom left navigation pane of the DTR web interface and use the Swagger UI to send your API request.
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app
|
||||
title: docker app
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_bundle
|
||||
title: docker app bundle
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_completion
|
||||
title: docker app completion
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_init
|
||||
title: docker app init
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_inspect
|
||||
title: docker app inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_install
|
||||
title: docker app install
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_list
|
||||
title: docker app list
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_merge
|
||||
title: docker app merge
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_pull
|
||||
title: docker app pull
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_push
|
||||
title: docker app push
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_render
|
||||
title: docker app render
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_split
|
||||
title: docker app split
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_status
|
||||
title: docker app status
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_uninstall
|
||||
title: docker app uninstall
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_upgrade
|
||||
title: docker app upgrade
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_validate
|
||||
title: docker app validate
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: docker-app
|
||||
datafile: docker_app_version
|
||||
title: docker app version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble
|
||||
title: docker assemble
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend
|
||||
title: docker assemble backend
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_cache
|
||||
title: docker assemble backend cache
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_cache_purge
|
||||
title: docker assemble backend cache purge
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_cache_usage
|
||||
title: docker assemble backend cache usage
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_image
|
||||
title: docker assemble backend image
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_info
|
||||
title: docker assemble backend info
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_logs
|
||||
title: docker assemble backend logs
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_start
|
||||
title: docker assemble backend start
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_backend_stop
|
||||
title: docker assemble backend stop
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_build
|
||||
title: docker assemble build
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: assemble
|
||||
datafile: docker_assemble_version
|
||||
title: docker assemble version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_attach
|
|||
title: docker attach
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/attach/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_build
|
|||
title: docker build
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/build/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder
|
||||
title: docker builder
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder_build
|
||||
title: docker builder build
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
datafolder: engine-cli
|
||||
datafile: docker_builder_prune
|
||||
title: docker builder prune
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx
|
||||
title: docker buildx
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_bake
|
||||
title: docker buildx bake
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_build
|
||||
title: docker buildx build
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_create
|
||||
title: docker buildx create
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools
|
||||
title: docker buildx imagetools
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_create
|
||||
title: docker buildx imagetools create
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_imagetools_inspect
|
||||
title: docker buildx imagetools inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_inspect
|
||||
title: docker buildx inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_ls
|
||||
title: docker buildx ls
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_rm
|
||||
title: docker buildx rm
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_stop
|
||||
title: docker buildx stop
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_use
|
||||
title: docker buildx use
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: buildx
|
||||
datafile: docker_buildx_version
|
||||
title: docker buildx version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_checkpoint
|
|||
title: docker checkpoint
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_checkpoint_create
|
|||
title: docker checkpoint create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_checkpoint_ls
|
|||
title: docker checkpoint ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_checkpoint_rm
|
|||
title: docker checkpoint rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/checkpoint_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -3,6 +3,7 @@ datafolder: cluster
|
|||
datafile: docker_cluster
|
||||
title: docker cluster
|
||||
redirect_from: /cluster/reference/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_backup
|
||||
title: docker cluster backup
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_create
|
||||
title: docker cluster create
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_inspect
|
||||
title: docker cluster inspect
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_ls
|
||||
title: docker cluster ls
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_restore
|
||||
title: docker cluster restore
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_rm
|
||||
title: docker cluster rm
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_update
|
||||
title: docker cluster update
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
datafolder: cluster
|
||||
datafile: docker_cluster_version
|
||||
title: docker cluster version
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,6 +4,7 @@ datafile: docker_commit
|
|||
title: docker commit
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/commit/
|
||||
skip_read_time: true
|
||||
---
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_config
|
|||
title: docker config
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_config_create
|
|||
title: docker config create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_config_inspect
|
|||
title: docker config inspect
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_inspect/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_config_ls
|
|||
title: docker config ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_config_rm
|
|||
title: docker config rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/config_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container
|
|||
title: docker container
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_attach
|
|||
title: docker container attach
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_attach/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_commit
|
|||
title: docker container commit
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_commit/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_cp
|
|||
title: docker container cp
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_cp/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_create
|
|||
title: docker container create
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_create/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_diff
|
|||
title: docker container diff
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_diff/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_exec
|
|||
title: docker container exec
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_exec/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_export
|
|||
title: docker container export
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_export/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_inspect
|
|||
title: docker container inspect
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_inspect/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_kill
|
|||
title: docker container kill
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_kill/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_logs
|
|||
title: docker container logs
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_logs/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_ls
|
|||
title: docker container ls
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_ls/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_pause
|
|||
title: docker container pause
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_pause/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_port
|
|||
title: docker container port
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_port/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_prune
|
|||
title: docker container prune
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_prune/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_rename
|
|||
title: docker container rename
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rename/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_restart
|
|||
title: docker container restart
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_restart/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_rm
|
|||
title: docker container rm
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_run
|
|||
title: docker container run
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_rm/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_start
|
|||
title: docker container start
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_start/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_stats
|
|||
title: docker container stats
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_stats/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_stop
|
|||
title: docker container stop
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_stop/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_top
|
|||
title: docker container top
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_top/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
|
@ -4,8 +4,8 @@ datafile: docker_container_unpause
|
|||
title: docker container unpause
|
||||
redirect_from:
|
||||
- /edge/engine/reference/commandline/container_unpause/
|
||||
skip_read_time: true
|
||||
---
|
||||
|
||||
<!--
|
||||
Sorry, but the contents of this page are automatically generated from
|
||||
Docker's source code. If you want to suggest a change to the text that appears
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue