summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorSebastiaan van Stijn <github@gone.nl>2022-05-24 17:02:30 +0200
committerSebastiaan van Stijn <github@gone.nl>2023-04-15 01:27:16 +0200
commit3903f16cd6dcd9e749c938252a5f00b43f78da8a (patch)
tree987a2caa9b07c5297dcdc2a0c5b4c379d69e8e10 /project
parent5bf405b2afea6daf3960ad91583b0d290afd843f (diff)
downloaddocker-3903f16cd6dcd9e749c938252a5f00b43f78da8a.tar.gz
daemon: remove deprecated AuFS storage driver
There's still some locations refering to AuFS; - pkg/archive: I suspect most of that code is because the whiteout-files are modelled after aufs (but possibly some code is only relevant to images created with AuFS as storage driver; to be looked into). - contrib/apparmor/template: likely some rules can be removed - contrib/dockerize-disk.sh: very old contribution, and unlikely used by anyone, but perhaps could be updated if we want to (or just removed). Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Diffstat (limited to 'project')
-rw-r--r--project/ISSUE-TRIAGE.md1
-rw-r--r--project/PACKAGERS.md9
2 files changed, 1 insertions, 9 deletions
diff --git a/project/ISSUE-TRIAGE.md b/project/ISSUE-TRIAGE.md
index 5a91d13457..5f36e992f4 100644
--- a/project/ISSUE-TRIAGE.md
+++ b/project/ISSUE-TRIAGE.md
@@ -70,7 +70,6 @@ have:
| area/security/selinux |
| area/security/trust |
| area/storage |
-| area/storage/aufs |
| area/storage/btrfs |
| area/storage/devicemapper |
| area/storage/overlay |
diff --git a/project/PACKAGERS.md b/project/PACKAGERS.md
index 5b569f75fd..8fecf9e86e 100644
--- a/project/PACKAGERS.md
+++ b/project/PACKAGERS.md
@@ -94,14 +94,9 @@ To disable devicemapper:
export DOCKER_BUILDTAGS='exclude_graphdriver_devicemapper'
```
-To disable aufs:
-```bash
-export DOCKER_BUILDTAGS='exclude_graphdriver_aufs'
-```
-
NOTE: if you need to set more than one build tag, space separate them:
```bash
-export DOCKER_BUILDTAGS='exclude_graphdriver_aufs exclude_graphdriver_btrfs'
+export DOCKER_BUILDTAGS='exclude_graphdriver_devicemapper exclude_graphdriver_btrfs'
```
## System Dependencies
@@ -137,8 +132,6 @@ the client will even run on alternative platforms such as Mac OS X / Darwin.
Some of Docker's features are activated by using optional command-line flags or
by having support for them in the kernel or userspace. A few examples include:
-* AUFS graph driver (requires AUFS patches/support enabled in the kernel, and at
- least the "auplink" utility from aufs-tools)
* BTRFS graph driver (requires suitable kernel headers: `linux/btrfs.h` and `linux/btrfs_tree.h`, present in 4.12+; and BTRFS support enabled in the kernel)
* ZFS graph driver (requires userspace zfs-utils and a corresponding kernel module)
* Libseccomp to allow running seccomp profiles with containers