You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/install-guides/nerdctl.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,11 @@ weight: 1
27
27
28
28
[Nerdctl](https://github.com/containerd/nerdctl) is an open-source command-line interface (CLI) designed to be compatible with the Docker CLI, but specifically for interacting with [containerd](https://containerd.io/). It provides a familiar user experience for developers who are familiar with Docker, while leveraging the capabilities of containerd as the underlying container runtime.
29
29
30
-
Using containerd and nerdctl provides similar functionality to Docker but with a smaller memory footprint, making it ideal for IoT and edge solutions, especially on Arm devices that balance energy efficiency and performance.
30
+
Using `containerd` and `nerdctl` provides similar functionality to Docker but with a smaller memory footprint, making it ideal for IoT and edge solutions, especially on Arm devices that balance energy efficiency and performance.
31
31
32
32
Nerdctl also supports running containers in rootless mode, which helps enhance security by not requiring elevated privileges. Rootless mode is not covered below but you can refer to the [documentation](https://rootlesscontaine.rs/getting-started/containerd/) for information about how to run `containerd-rootless-setuptool.sh install`.
33
33
34
-
This guide explains how to install and use containerd and nerdctl on Arm Linux and run with `sudo`
34
+
This guide explains how to install and use `containerd` and `nerdctl` on Arm Linux, and how to run commands with `sudo`.
35
35
36
36
## Before you begin
37
37
@@ -49,7 +49,7 @@ The output should be:
49
49
aarch64
50
50
```
51
51
52
-
Ensure `wget` and `tar` are installed. Most distributions will include them, but if not run:
52
+
Ensure `wget` and `tar` are installed. Most distributions will include them, but if not, run:
53
53
54
54
```bash
55
55
sudo apt-get update
@@ -58,13 +58,13 @@ sudo apt-get install -y wget tar
58
58
59
59
## Install containerd
60
60
61
-
Install the containerd runtime:
61
+
Install the `containerd` runtime:
62
62
63
63
```bash
64
64
sudo apt-get install containerd -y
65
65
```
66
66
67
-
Start and enable the containerd service:
67
+
Start and enable the `containerd` service:
68
68
69
69
```bash
70
70
sudo systemctl start containerd
@@ -77,7 +77,7 @@ Confirm the service is running:
77
77
systemctl status containerd.service
78
78
```
79
79
80
-
When containerd is running, the output is similar to:
80
+
When `containerd` is running, the output is similar to:
0 commit comments