From 2de129897dcae21268e0a1571d37bea49636d966 Mon Sep 17 00:00:00 2001 From: Stephen Levine Date: Fri, 5 Oct 2018 20:43:41 -0400 Subject: [PATCH] Update README to reflect latest UX --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3de0111c4c..175949fd54 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,12 @@ For information on buildpacks: [buildpacks.io](https://buildpacks.io/) ## Example Usage -Currently we recommend using the development detect image - ``` -./pack build [-p ] --detect-image packsdev/v3:detect +./pack build packs/myimage:mytag --path ./myapp ``` -The above will create images on your local daemon. If you wish to create images on a docker registry, use the `--publish` flag. +The above will create images on your local daemon. If you wish to export images directly to a docker registry, use the `--publish` flag. ``` -./pack build myorg/myapp -p fixtures/node_app --detect-image packsdev/v3:detect --publish +./pack build packs/myimage:mytag --path ./myapp --publish ```