From 553b36349b681d0dffd3913865cbf2c79b2fb172 Mon Sep 17 00:00:00 2001 From: Nikolay Edigaryev Date: Thu, 25 Aug 2022 15:43:30 +0400 Subject: [PATCH] README.md: clarify "Pulling a Remote Image" section (#196) --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dc8c47..7eb7aac 100644 --- a/README.md +++ b/README.md @@ -191,10 +191,20 @@ tart push my-local-vm-name acme.io/remoteorg/name:latest acme.io/remoteorg/name: #### Pulling a Remote Image +You can either pull an image: + ```shell -tart pull acme.io/remoteorg/name:latest my-local-vm-name +tart pull acme.io/remoteorg/name:latest ``` +...or instantiate a VM from a remote image: + +```shell +tart clone acme.io/remoteorg/name:latest my-local-vm-name +``` + +This invocation calls the `tart pull` implicitly (if the image is not being present) before doing the actual cloning. + ## FAQ