-
Notifications
You must be signed in to change notification settings - Fork 7.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21680 from docker/published-update
publish updates from main
- Loading branch information
Showing
6 changed files
with
88 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ exceptions: | |
- NET | ||
- NFS | ||
- NOTE | ||
- NTFS | ||
- NTLM | ||
- NUMA | ||
- NVDA | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,3 +186,4 @@ ufw | |
umask | ||
vSphere | ||
vpnkit | ||
windowsfilter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
content/manuals/engine/storage/drivers/windowsfilter-driver.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
description: Learn about the windowsfilter storage driver | ||
keywords: container, storage, driver, windows, windowsfilter | ||
title: windowsfilter storage driver | ||
--- | ||
|
||
The windowsfilter storage driver is the default storage driver for Docker | ||
Engine on Windows. The windowsfilter driver uses Windows-native file system | ||
layers to for storing Docker layers and volume data on disk. The windowsfilter | ||
storage driver only works on file systems formatted with NTFS. | ||
|
||
## Configure the windowsfilter storage driver | ||
|
||
For most use case, no configuring the windowsfilter storage driver is not | ||
necessary. | ||
|
||
The default storage limit for Docker Engine on Windows is 127GB. To use a | ||
different storage size, set the `size` option for the windowsfilter storage | ||
driver. See [windowsfilter options](/reference/cli/dockerd.md#windowsfilter-options). | ||
|
||
Data is stored on the Docker host in `image` and `windowsfilter` subdirectories | ||
within `C:\ProgramData\docker` by default. You can change the storage location | ||
by configuring the `data-root` option in the [Daemon configuration file](/reference/cli/dockerd.md#on-windows): | ||
|
||
```json | ||
{ | ||
"data-root": "d:\\docker" | ||
} | ||
``` | ||
|
||
You must restart the daemon for the configuration change to take effect. | ||
|
||
## Additional information | ||
|
||
For more information about how container storage works on Windows, refer to | ||
Microsoft's [Containers on Windows documentation](https://learn.microsoft.com/en-us/virtualization/windowscontainers/manage-containers/container-storage). |