|
13 | 13 |
|
14 | 14 | ✅ [Optional] Supports [rootless mode, without slirp overhead (bypass4netns)](./docs/rootless.md)
|
15 | 15 |
|
16 |
| - ✅ [Optional] Supports lazy-pulling ([Stargz](./docs/stargz.md), [Nydus](./docs/nydus.md)) |
| 16 | + ✅ [Optional] Supports lazy-pulling ([Stargz](./docs/stargz.md), [Nydus](./docs/nydus.md), [OverlayBD](./docs/overlaybd.md)) |
17 | 17 |
|
18 | 18 | ✅ [Optional] Supports [encrypted images (ocicrypt)](./docs/ocicrypt.md)
|
19 | 19 |
|
@@ -145,15 +145,15 @@ docker run -it --rm --privileged nerdctl
|
145 | 145 |
|
146 | 146 | The goal of `nerdctl` is to facilitate experimenting the cutting-edge features of containerd that are not present in Docker.
|
147 | 147 |
|
148 |
| -Such features include, but not limited to, on-demand image pulling (lazy-pulling) [Stargz](./docs/stargz.md), [Nydus](./docs/nydus.md) and [image encryption/decryption](./docs/ocicrypt.md). |
| 148 | +Such features include, but not limited to, on-demand image pulling (lazy-pulling) [Stargz](./docs/stargz.md), [Nydus](./docs/nydus.md), [OverlayBD](./docs/overlaybd.md) and [image encryption/decryption](./docs/ocicrypt.md). |
149 | 149 |
|
150 | 150 | Note that competing with Docker is _not_ the goal of `nerdctl`. Those cutting-edge features are expected to be eventually available in Docker as well.
|
151 | 151 |
|
152 | 152 | Also, `nerdctl` might be potentially useful for debugging Kubernetes clusters, but it is not the primary goal.
|
153 | 153 |
|
154 | 154 | ## Features present in `nerdctl` but not present in Docker
|
155 | 155 | Major:
|
156 |
| -- On-demand image pulling (lazy-pulling) using [Stargz](./docs/stargz.md)/[Nydus](./docs/nydus.md) Snapshotter: `nerdctl --snapshotter=stargz|nydus run IMAGE` . |
| 156 | +- On-demand image pulling (lazy-pulling) using [Stargz](./docs/stargz.md)/[Nydus](./docs/nydus.md)/[OverlayBD](./docs/overlaybd.md) Snapshotter: `nerdctl --snapshotter=stargz|nydus|overlaybd run IMAGE` . |
157 | 157 | - [Image encryption and decryption using ocicrypt (imgcrypt)](./docs/ocicrypt.md): `nerdctl image (encrypt|decrypt) SRC DST`
|
158 | 158 | - [P2P image distribution using IPFS](./docs/ipfs.md): `nerdctl run ipfs://CID` .
|
159 | 159 | P2P image distribution (IPFS) is completely optional. Your host is NOT connected to any P2P network, unless you opt in to [install and run IPFS daemon](https://docs.ipfs.io/install/).
|
@@ -1466,6 +1466,7 @@ Basic features:
|
1466 | 1466 | Advanced features:
|
1467 | 1467 | - [`./docs/stargz.md`](./docs/stargz.md): Lazy-pulling using Stargz Snapshotter
|
1468 | 1468 | - [`./docs/nydus.md`](./docs/nydus.md): Lazy-pulling using Nydus Snapshotter
|
| 1469 | +- [`./docs/overlaybd.md`](./docs/overlaybd.md): Lazy-pulling using OverlayBD Snapshotter |
1469 | 1470 | - [`./docs/ocicrypt.md`](./docs/ocicrypt.md): Running encrypted images
|
1470 | 1471 | - [`./docs/gpu.md`](./docs/gpu.md): Using GPUs inside containers
|
1471 | 1472 | - [`./docs/multi-platform.md`](./docs/multi-platform.md): Multi-platform mode
|
|
0 commit comments