@@ -8,6 +8,8 @@ You do NOT need this `fuse-overlayfs` plugin on the following environments, beca
8
8
- [ Debian 10 kernel] ( https://salsa.debian.org/kernel-team/linux/blob/283390e7feb21b47779b48e0c8eb0cc409d2c815/debian/patches/debian/overlayfs-permit-mounts-in-userns.patch )
9
9
- Debian 10 needs ` sudo modprobe overlay permit_mounts_in_userns=1 ` . Future release of Debian with kernel >= 5.11 will not need this ` modprobe ` hack.
10
10
11
+ fuse-overlayfs-snapshotter is a ** non-core** sub-project of containerd.
12
+
11
13
## Requirements
12
14
* kernel >= 4.18
13
15
* containerd >= 1.4
@@ -29,10 +31,13 @@ with the following content, and recompile the containerd binary:
29
31
``` go
30
32
/*
31
33
Copyright The containerd Authors.
34
+
32
35
Licensed under the Apache License, Version 2.0 (the "License");
33
36
you may not use this file except in compliance with the License.
34
37
You may obtain a copy of the License at
38
+
35
39
http://www.apache.org/licenses/LICENSE-2.0
40
+
36
41
Unless required by applicable law or agreed to in writing, software
37
42
distributed under the License is distributed on an "AS IS" BASIS,
38
43
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -42,8 +47,7 @@ with the following content, and recompile the containerd binary:
42
47
43
48
package main
44
49
45
- // NOTE: the package name was "github.com/AkihiroSuda/containerd-fuse-overlayfs" before v1.0.0
46
- import _ " github.com/AkihiroSuda/containerd-fuse-overlayfs/plugin"
50
+ import _ " github.com/containerd/fuse-overlayfs-snapshotter/plugin"
47
51
```
48
52
49
53
No extra configuration is needed.
@@ -144,3 +148,12 @@ To run the test as a non-root user, [RootlessKit](https://github.com/rootless-co
144
148
``` console
145
149
$ go test -exec rootlesskit -test.v -test.root
146
150
```
151
+
152
+ ## Project details
153
+ fuse-overlayfs-snapshotter is a containerd ** non-core** sub-project, licensed under the [ Apache 2.0 license] ( ./LICENSE ) .
154
+ As a containerd non-core sub-project, you will find the:
155
+ * [ Project governance] ( https://github.com/containerd/project/blob/master/GOVERNANCE.md ) ,
156
+ * [ Maintainers] ( ./MAINTAINERS ) ,
157
+ * and [ Contributing guidelines] ( https://github.com/containerd/project/blob/master/CONTRIBUTING.md )
158
+
159
+ information in our [ ` containerd/project ` ] ( https://github.com/containerd/project ) repository.
0 commit comments