From b3c10dddb676f523d10f1b7768359a1587b1ba0c Mon Sep 17 00:00:00 2001 From: Pablo Silva Date: Fri, 13 Jan 2023 11:08:56 -0300 Subject: [PATCH 1/2] Replaced ssh with https protocol when cloning the repository --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d37b17cd..325667739 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ If you're new to containers, that is so exciting! Give the command above a try a To build an image, try a quick example from the finch client repository. ```sh -git clone git@github.com:runfinch/finch.git +git clone https://github.com/runfinch/finch.git cd finch/contrib/hello-finch finch build . -t hello-finch .. From 88bb8f52c7ca0474b99e6525c976de2db76c7833 Mon Sep 17 00:00:00 2001 From: Pablo Silva Date: Fri, 13 Jan 2023 11:11:13 -0300 Subject: [PATCH 2/2] Complemented the example with finch run --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 325667739..2ff79211e 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,13 @@ finch run --rm public.ecr.aws/finch/hello-finch If you're new to containers, that is so exciting! Give the command above a try after you've installed and initialized Finch. The `run` command pulls an image locally if it's not already present, and then creates and runs a container for you. Note the handy `--rm` option will delete the container instance once it's done executing. -To build an image, try a quick example from the finch client repository. +To build and run a local image, try a quick example from the finch client repository. ```sh git clone https://github.com/runfinch/finch.git cd finch/contrib/hello-finch finch build . -t hello-finch -.. +finch run --rm hello-finch ``` Again if you're new to containers, you just built a container image. Nice!