https://github.com/containerd/aufs
[DEPRECATED] AUFS Snapshotter for containerd v1.x
https://github.com/containerd/aufs
aufs containerd
Last synced: 7 months ago
JSON representation
[DEPRECATED] AUFS Snapshotter for containerd v1.x
- Host: GitHub
- URL: https://github.com/containerd/aufs
- Owner: containerd
- License: apache-2.0
- Created: 2017-09-14T19:57:20.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2023-07-05T21:34:04.000Z (over 2 years ago)
- Last Synced: 2025-06-08T01:11:23.817Z (7 months ago)
- Topics: aufs, containerd
- Language: Go
- Homepage:
- Size: 165 KB
- Stars: 26
- Watchers: 14
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aufs snapshotter
[](https://pkg.go.dev/github.com/containerd/aufs)
[](https://github.com/containerd/aufs/actions?query=workflow%3ACI)
[](https://codecov.io/gh/containerd/aufs)
[](https://goreportcard.com/report/github.com/containerd/aufs)
AUFS implementation of the snapshot interface for containerd.
## Compile
To compile containerd with aufs support add the import into the `cmd/containerd/builtins_linux.go` file.
```go
package main
import (
_ "github.com/containerd/aufs"
_ "github.com/containerd/containerd/linux"
_ "github.com/containerd/containerd/metrics/cgroups"
_ "github.com/containerd/containerd/snapshot/overlay"
)
```
## Project details
aufs is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE).
As a containerd sub-project, you will find the:
* [Project governance](https://github.com/containerd/project/blob/main/GOVERNANCE.md),
* [Maintainers](https://github.com/containerd/project/blob/main/MAINTAINERS),
* and [Contributing guidelines](https://github.com/containerd/project/blob/main/CONTRIBUTING.md)
information in our [`containerd/project`](https://github.com/containerd/project) repository.