Subhransu
Subhransu
It seems ``` can't use log-uri with fifo-dir ``` https://github.com/containerd/containerd/blob/main/cmd/ctr/commands/tasks/exec.go which makes the following case invalid ``` else if flagD && logURI != "" { u, err := url.Parse(logURI) if...
i think i was able to make it work ``` [root@lima-finch containerd]# sudo nerdctl attach test12 called in process terminal/Hello, world/ /Hello, world/ /Hello, world/ /Hello, world/ /Hello, world/ /Hello,...
that may not directly work the stdout binary seems to forward containers stdio to the logging binary, but in detached mode i presume containers stdio is closed? calling the modified...
one approach can be to override the attach to pipe the logging. So when we attach we can read directly from the logdriver and print the output as you said....
It seems we run /usr/local/bin/nerdctl _NERDCTL_INTERNAL_LOGGING /var/lib/nerdctl/1935db59 as part of nerdctl child process. In case when nerdctl cli launching container as fg via containerd, it has a wait for the...
yes thats a good suggestion. Can i get assigned to this one, would like to implement it.
As per the comment it seems the platform option is the driving factor for this. ``` // NOTE: It's possible that BuildKit doesn't download the base image of non-default platform...
Thanks for the response, did some testing to understand the logic: So executor, uuid and namespace need to be same for able to share images. (some optimization possible but thats...
Fix has been merged
The support for virt-sparsify/fstrim was added with https://github.com/lima-vm/lima/pull/1102 (it doesnt run virt-sparsify/fstrim but supports discards) Option1: The safest way would be to do at time time of boot, to run...