storage: use relative markdown links

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-04-08 17:46:19 +02:00
parent c5f3b37ced
commit 637bf1e066
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C
7 changed files with 29 additions and 39 deletions

View File

@ -99,7 +99,7 @@ mounts is to think about where the data lives on the Docker host.
on the Docker host or within a container. It can be used by a container during
the lifetime of the container, to store non-persistent state or sensitive
information. For instance, internally, swarm services use `tmpfs` mounts to
mount [secrets](/engine/swarm/secrets.md) into a service's containers.
mount [secrets](../engine/swarm/secrets.md) into a service's containers.
- **[named pipes](https://docs.microsoft.com/en-us/windows/desktop/ipc/named-pipes)**: An `npipe`
mount can be used for communication between the Docker host and a container. Common use case is

View File

@ -13,21 +13,19 @@ and you use Docker Engine - Community, consider using the newer
[overlay2](overlayfs-driver.md){: target="_blank" class="_" }, which has
potential performance advantages over the `aufs` storage driver.
> **Note**: AUFS is not supported on some distributions and Docker editions. See
> [Prerequisites](#prerequisites) > for more information about supported
> platforms, and see also
> [the order of preferences for storage drivers](selectadriver.md#storage-driver-order).
> **Note**
>
> AUFS is not supported on some distributions and Docker editions. See
> [Prerequisites](#prerequisites) for more information about supported
> platforms.
## Prerequisites
- For Docker Engine - Community, AUFS is supported on Ubuntu, and on Debian versions prior to
Stretch.
- For Docker EE, AUFS is supported on Ubuntu.
- If you use Ubuntu, you need to
[install extra packages](/engine/install/ubuntu.md#recommended-extra-packages-for-trusty-1404){: target="_blank" class="_"}
to add the AUFS module to the kernel. If you do not install these packages,
you need to use `devicemapper` on Ubuntu 14.04 (which is not recommended),
or `overlay2` on Ubuntu 16.04 and higher, which is also supported.
- If you use Ubuntu, you need to add the AUFS module to the kernel. If you do
not install these packages, you need to use `overlay2`.
- AUFS cannot use the following backing filesystems: `aufs`, `btrfs`, or
`ecryptfs`. This means that the filesystem which contains
`/var/lib/docker/aufs` cannot be one of these filesystem types.
@ -227,6 +225,6 @@ The following generic performance best practices also apply to AUFS.
## Related information
- [Volumes](/storage/volumes.md)
- [Understand images, containers, and storage drivers](imagesandcontainers.md)
- [Select a storage driver](selectadriver.md)
- [Volumes](../volumes.md)
- [Understand images, containers, and storage drivers](index.md)
- [Select a storage driver](select-storage-driver.md)

View File

@ -112,10 +112,8 @@ This procedure is essentially identical on SLES and Ubuntu.
}
```
See all storage options for each storage driver:
- [Stable](/engine/reference/commandline/dockerd.md#storage-driver-options)
- [Edge](/edge/engine/reference/commandline/dockerd.md#storage-driver-options)
See all storage options for each storage driver in the
[daemon reference documentation](/engine/reference/commandline/dockerd/#storage-driver-options)
7. Start Docker. After it is running, verify that `btrfs` is being used as the
storage driver.
@ -313,6 +311,6 @@ storage driver.
## Related Information
* [Volumes](/storage/volumes.md)
* [Understand images, containers, and storage drivers](imagesandcontainers.md)
* [Select a storage driver](selectadriver.md)
- [Volumes](../volumes.md)
- [Understand images, containers, and storage drivers](index.md)
- [Select a storage driver](select-storage-driver.md)

View File

@ -73,10 +73,8 @@ For production systems, see
}
```
See all storage options for each storage driver:
- [Stable](/engine/reference/commandline/dockerd.md#storage-driver-options)
- [Edge](/edge/engine/reference/commandline/dockerd.md#storage-driver-options)
See all storage options for each storage driver in the
[daemon reference documentation](/engine/reference/commandline/dockerd/#storage-driver-options)
Docker does not start if the `daemon.json` file contains badly-formed JSON.
@ -183,10 +181,8 @@ options in the table above.
}
```
See all storage options for each storage driver:
- [Stable](/engine/reference/commandline/dockerd.md#storage-driver-options)
- [Edge](/edge/engine/reference/commandline/dockerd.md#storage-driver-options)
See all storage options for each storage driver in the
[daemon reference documentation](/engine/reference/commandline/dockerd/#storage-driver-options)
Restart Docker for the changes to take effect. Docker invokes the commands to
configure the block device for you.
@ -835,11 +831,11 @@ storage driver.
by default `/var/lib/docker`. If your containers generate lots of log messages,
this may lead to increased disk usage or the inability to manage your system due
to a full disk. You can configure a
[log driver](/config/containers/logging/configure.md) to store your container
[log driver](../../config/containers/logging/configure.md) to store your container
logs externally.
## Related Information
* [Volumes](/storage/volumes.md)
* [Understand images, containers, and storage drivers](imagesandcontainers.md)
* [Select a storage driver](selectadriver.md)
- [Volumes](../volumes.md)
- [Understand images, containers, and storage drivers](index.md)
- [Select a storage driver](select-storage-driver.md)

View File

@ -400,5 +400,5 @@ work, with one or more virtual disks per virtual machine.
## Related information
* [Volumes](/storage/volumes.md)
* [Volumes](../volumes.md)
* [Select a storage driver](select-storage-driver.md)

View File

@ -130,6 +130,6 @@ same amount of room on disk. This is one of the disadvantages of using the
## Related information
* [Volumes](/storage/volumes.md)
* [Understand images, containers, and storage drivers](imagesandcontainers.md)
- [Understand images, containers, and storage drivers](index.md)
- [Select a storage driver](select-storage-driver.md)

View File

@ -139,10 +139,8 @@ Edit `/etc/docker/daemon.json` and add the following:
}
```
See all storage options for each storage driver:
- [Stable](/engine/reference/commandline/dockerd.md#storage-driver-options)
- [Edge](/edge/engine/reference/commandline/dockerd.md#storage-driver-options)
See all storage options for each storage driver in the
[daemon reference documentation](/engine/reference/commandline/dockerd/#storage-driver-options)
Save and close the file, and restart Docker.