finch
finch copied to clipboard
The Finch CLI an open source client for container development
Issue #, if available: #23 *Description of changes:* Adding the `finch vm status` command. *Testing done:* `make && make lint && make test-unit` since I did not yet updated the...
finch pull --platform=amd64 xxx FATA[1167] failed to extract layer sha256:9cc8d31519b533c03cd8347147f9ea0b9bfbda4650200d388a1495a34812283f: mount callback failed on /var/lib/containerd/tmpmounts/containerd-mount3705620677: failed to Lchown "/var/lib/containerd/tmpmounts/containerd-mount3705620677/kubeflow/src" for UID 29511686, GID 1085706827: lchown /var/lib/containerd/tmpmounts/containerd-mount3705620677/kubeflow/src: invalid argument (Hint: try...
**What is the problem you're trying to solve?.** I'd like to copy some files from my host inside a container. **Describe the feature you'd like** The equivalent of `nerdctl cp`...
finch --platform=amd64 run --name mysql57 -p 3306:3306 -v /Users/zhanghao/mysql57:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=123456 --restart=always -d mysql:5.7 finch logs mysql57 2022-12-02 03:46:02+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 5.7.40-1.el7 started. /usr/bin/chown: changing...
First, thank you for all of your works on finch. **What is the problem you're trying to solve?.** docker has `compose exec` command, but finch doesn't. https://docs.docker.com/engine/reference/commandline/compose_exec/ **Describe the feature...
**What is the problem you're trying to solve?.** Improve VM init/start times by installing packages from local disk rather than always going to the internet. Also allow stricter version pinning....
**What is the problem you're trying to solve?.** Lima recently merged support for persistent data volumes, we should enable it in Finch by default so data can persist between different...
**What is the problem you're trying to solve?.** buildkit can either leverage a [containerd worker or an OCI worker](https://github.com/containerd/nerdctl/blob/main/docs/build.md#setting-up-nerdctl-build-with-buildkit), currently the Finch default is the OCI worker. This can be...
finch run -d -it --name ng --platform=amd64 -p 8080:80 nginx /bin/bash FATA[0000] currently flag -i and -d cannot be specified together (FIXME) FATA[0000] exit status 1
**What is the problem you're trying to solve?.** I quickly went through the README and couldn't find an entry regarding GPU usage with Finch. The project looks exciting overall, however,...