-
DescriptionIs there a way to get direct access to a containerd socket running on a lima VM? The use case I am thinking of is, rather than having to execute a cli - |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 18 replies
-
There is nothing magical about it; you can just forward it from the VM to the host, the same way the docker example does it: Lines 77 to 79 in baca0e7 Keep in mind though that not all operations can be performed over the socket, but might need direct access to the storage layer (e.g. |
Beta Was this translation helpful? Give feedback.
There is nothing magical about it; you can just forward it from the VM to the host, the same way the docker example does it:
lima/examples/docker.yaml
Lines 77 to 79 in baca0e7
Keep in mind though that not all operations can be performed over the socket, but might need direct access to the storage layer (e.g.
nerdctl build
).