Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d5bf094

Browse files
committedDec 2, 2024··
[WIP] website: enhance container examples
- Add Rootful mode - Add Podman - Add eStargz Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
1 parent 591ce7e commit d5bf094

File tree

2 files changed

+105
-29
lines changed

2 files changed

+105
-29
lines changed
 

‎website/content/en/docs/examples/_index.md

+5-29
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,16 @@ Specifying `--mount-type=virtiofs` is not necessary here, but it is highly recom
2222
for the best performance and stability.
2323

2424
## Running containers
25-
{{< tabpane text=true >}}
2625

27-
{{% tab header="containerd" %}}
28-
```bash
29-
nerdctl.lima run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
30-
```
31-
{{% /tab %}}
32-
33-
{{% tab header="Docker" %}}
34-
```bash
35-
limactl start template://docker
36-
export DOCKER_HOST=$(limactl list docker --format 'unix://{{.Dir}}/sock/docker.sock')
37-
docker run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
38-
```
39-
{{% /tab %}}
26+
Lima comes with the built-in integration for [containerd](https://containerd.io) and
27+
[nerdctl](https://github.com/containerd/nerdctl) (contaiNERD CTL):
4028

41-
{{% tab header="Kubernetes" %}}
4229
```bash
43-
limactl start template://k8s
44-
export KUBECONFIG=$(limactl list k8s --format 'unix://{{.Dir}}/copied-from-guest/kubeconfig.yaml')
45-
kubectl apply -f ...
30+
nerdctl.lima run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
4631
```
47-
{{% /tab %}}
48-
49-
{{< /tabpane >}}
50-
51-
- <http://127.0.0.1:8080> is accessible from the host, as well as from the VM.
52-
53-
- For the usage of containerd and nerdctl (contaiNERD ctl), visit <https://github.com/containerd/containerd>
54-
and <https://github.com/containerd/nerdctl>.
32+
<http://127.0.0.1:8080> is accessible from the host, as well as from the VM.
5533

56-
- If you have installed Lima by `make install`, the `nerdctl.lima` command is also available as `nerdctl`.
57-
If you have installed Lima by `brew install lima`, you may make an alias (or a symlink) by yourself:
58-
`alias nerdctl=nerdctl.lima`
34+
See also the [Containers](./containers) page for other examples such as using Docker and Kubernetes.
5935

6036
## Advanced configuration
6137

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
title: Containers
3+
weight: 5
4+
---
5+
6+
## Running containers
7+
{{< tabpane text=true >}}
8+
9+
{{% tab header="containerd" %}}
10+
{{% tab header="Rootless" %}}
11+
```bash
12+
lima nerdctl run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
13+
```
14+
15+
or
16+
17+
```bash
18+
nerdctl.lima run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
19+
```
20+
{{% /tab %}}
21+
{{% tab header="Rootful" %}}
22+
```bash
23+
lima sudo systemctl enable --now containerd
24+
lima sudo nerdctl run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
25+
```
26+
{{% /tab %}}
27+
28+
- For the usage of containerd and nerdctl (contaiNERD ctl), visit <https://github.com/containerd/containerd>
29+
and <https://github.com/containerd/nerdctl>.
30+
31+
- If you have installed Lima by `make install`, the `nerdctl.lima` command is also available as `nerdctl`.
32+
If you have installed Lima by `brew install lima`, you may make an alias (or a symlink) by yourself:
33+
`alias nerdctl=nerdctl.lima`
34+
35+
{{% /tab %}}
36+
37+
{{% tab header="Docker" %}}
38+
{{% tab header="Rootless" %}}
39+
```bash
40+
limactl start template://docker
41+
export DOCKER_HOST=$(limactl list docker --format 'unix://{{.Dir}}/sock/docker.sock')
42+
docker run -d --name nginx -p 127.0.0.1:8080:80 nginx:alpine
43+
```
44+
{{% /tab %}}
45+
{{% tab header="Rootful" %}}
46+
TBD
47+
{{% /tab %}}
48+
{{% /tab %}}
49+
50+
{{% tab header="Podman" %}}
51+
{{% tab header="Rootless" %}}
52+
TBD
53+
{{% /tab %}}
54+
{{% tab header="Rootful" %}}
55+
TBD
56+
{{% /tab %}}
57+
{{% /tab %}}
58+
59+
60+
{{% tab header="Kubernetes" %}}
61+
{{% tab header="kubeadm" %}}
62+
```bash
63+
limactl start template://k8s
64+
export KUBECONFIG=$(limactl list k8s --format 'unix://{{.Dir}}/copied-from-guest/kubeconfig.yaml')
65+
kubectl apply -f ...
66+
```
67+
{{% /tab %}}
68+
{{% tab header="k3s" %}}
69+
TBD
70+
{{% /tab %}}
71+
{{% /tab %}}
72+
73+
{{< /tabpane >}}
74+
75+
- <http://127.0.0.1:8080> is accessible from the host, as well as from the VM.
76+
77+
## Accelerating pulls with eStargz
78+
79+
WIP
80+
81+
```console
82+
83+
$ time nerdctl --snapshotter=overlayfs run -it --rm ghcr.io/stargz-containers/python:3.7-org python3 -c 'print("hi")'
84+
[...]
85+
hi
86+
87+
real 0m33.505s
88+
user 0m2.962s
89+
sys 0m6.629s
90+
```
91+
92+
```console
93+
$ time nerdctl --snapshotter=stargz run -it --rm ghcr.io/stargz-containers/python:3.7-esgz python3 -c 'print("hi")'
94+
[...]
95+
hi
96+
97+
real 0m12.335s
98+
user 0m0.469s
99+
sys 0m0.522s
100+
```

0 commit comments

Comments
 (0)
Please sign in to comment.