An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# aufs snapshotter

[![PkgGoDev](https://pkg.go.dev/badge/github.com/containerd/aufs)](https://pkg.go.dev/github.com/containerd/aufs)
[![Build Status](https://github.com/containerd/aufs/workflows/CI/badge.svg)](https://github.com/containerd/aufs/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/containerd/aufs/branch/main/graph/badge.svg)](https://codecov.io/gh/containerd/aufs)
[![Go Report Card](https://goreportcard.com/badge/github.com/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.