Skip to content

Commit 458e556

Browse files
authored
Merge pull request #24776 from karras/docs_update_ubuntu_containerd_instructions
Docs: Add containerd setup instructions for Ubuntu 18.04/20.04
2 parents 75f42c4 + 4adea80 commit 458e556

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

content/en/docs/setup/production-environment/container-runtimes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,24 @@ sudo mkdir -p /etc/containerd
125125
sudo containerd config default | sudo tee /etc/containerd/config.toml
126126
```
127127

128+
```shell
129+
# Restart containerd
130+
sudo systemctl restart containerd
131+
```
132+
{{% /tab %}}
133+
{{% tab name="Ubuntu 18.04/20.04" %}}
134+
135+
```shell
136+
# (Install containerd)
137+
sudo apt-get update && sudo apt-get install -y containerd
138+
```
139+
140+
```shell
141+
# Configure containerd
142+
sudo mkdir -p /etc/containerd
143+
sudo containerd config default > /etc/containerd/config.toml
144+
```
145+
128146
```shell
129147
# Restart containerd
130148
sudo systemctl restart containerd

0 commit comments

Comments
 (0)