|
| 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