Mrudul Harwani

Results 15 comments of Mrudul Harwani

> Hi @mharwani, as mentioned [here](https://github.com/containerd/nerdctl/issues/2313#issuecomment-1629819765) closing task io [io.Close()](https://github.com/containerd/containerd/blob/main/cio/io.go#L61) after task exiting should close FIFOs => send EOF to stdio => logger will receive `EOF` Hi @fahedouch, I tried...

It looks like the environment setup is failing for some of the checks because curl cannot reach the endpoint https://raw.githubusercontent.com/AkihiroSuda/containerized-systemd/v0.1.1/docker-entrypoint.sh: `SSL: no alternative certificate subject name matches target host name...

Implementation in #2861 resolves this. Closing the issue.

Hi @kidbrax, unfortunately Finch currently does not provide a REST API, and consequently it does not have the `APIVersion` field. We may be able to support the `--format` option in...

Hi, thank you for the feedback. I'm able to reproduce this on my machine. Build takes 6314s (1hr, 45m) with Finch and 66s with Docker. Usually, builds are not this...

Hi @stmcginnis, [nerdctl](https://github.com/containerd/nerdctl), our CLI tool, currently does not support SELinux context labeling (`--security-opt label`) like `docker`. There is an open issue upstream regarding this: https://github.com/containerd/nerdctl/issues/11. I'm curious to understand...

Thanks for the context @stmcginnis, that makes sense. I think regardless of whether this is resolved in `nerdctl`, it's a good idea to ignore the `--security-opt` options completely in Finch....

Thanks for the issue. The command works properly when you use `finch run`, but fails with `finch container run`: ``` $ finch run -it --rm --env="E=v" busybox env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin E=v...

In the following [code](https://github.com/runfinch/finch/blob/v1.1.2/cmd/finch/nerdctl.go#L250-L259): ```go limaArgs = append(limaArgs, append([]string{nerdctlCmdName}, strings.Fields(cmdName)...)...) var finalArgs []string for key, val := range envVars { finalArgs = append(finalArgs, "-e", fmt.Sprintf("%s=%s", key, val)) } finalArgs =...

Hi @deviantony, thanks for the feedback. I agree that `finch cp` should be a valid command to keep consistency with `nerdctl`. I'm working on it.