Merge branch 'master' of github.com:docker/docker.github.io

This commit is contained in:
Maria Bermudez 2019-03-28 12:28:44 -07:00
commit 57a0f78da1
2 changed files with 8 additions and 7 deletions

View File

@ -10,6 +10,9 @@ separately on the web UI of both applications.
You can configure DTR to have single sign-on (SSO) with UCP, so that users only
have to authenticate once.
> **Note**: After configuring single sign-on with DTR, users accessing DTR via
> `docker login` should create an [access token](/ee/dtr/user/access-tokens/) and use it to authenticate.
## At installation time
When installing DTR, use the `docker/dtr install --dtr-external-url <url>`

View File

@ -13,8 +13,6 @@ performance and more space used on disk than other storage drivers. However, it
is robust, stable, and works in every environment. It can also be used as a
mechanism to verify other storage back-ends against, in a testing environment.
Docker 17.12 and higher include support for quotas when using the VFS driver.
## Configure Docker with the `vfs` storage driver
1. Stop Docker.
@ -33,11 +31,12 @@ Docker 17.12 and higher include support for quotas when using the VFS driver.
```
If you want to set a quota to control the maximum size the VFS storage
driver can use, set the `size` option on the `storage-drivers` key. Quotas
are only supported in Docker 17.12 CE and higher.
driver can use, set the `size` option on the `storage-opts` key. Quotas
are only supported in Docker 17.12 and higher.
```json
{
"storage-driver": "vfs",
"storage-opts": ["size=256M"]
}
```
@ -51,14 +50,13 @@ Docker 17.12 and higher include support for quotas when using the VFS driver.
```
4. Verify that the daemon is using the `vfs` storage driver.
Use the `docker info` command and look for `Storage Driver` and
`Backing filesystem`.
Use the `docker info` command and look for `Storage Driver`.
```bash
$ docker info
Storage Driver: vfs
<output truncated>
...
```
Docker is now using the `vfs` storage driver. Docker has automatically