From 35cb8e3d96cc42fceca68dc4a85e35509a19ce81 Mon Sep 17 00:00:00 2001 From: Alex Daly <11139509+azdaly@users.noreply.github.com> Date: Fri, 19 Jun 2020 20:05:59 -0400 Subject: [PATCH] Rebuilding the image Without rebuilding the image, the update does not go through. --- docs/tutorial/updating-our-app/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/tutorial/updating-our-app/index.md b/docs/tutorial/updating-our-app/index.md index 92f752e..2bb1f5f 100644 --- a/docs/tutorial/updating-our-app/index.md +++ b/docs/tutorial/updating-our-app/index.md @@ -89,9 +89,10 @@ much easier than having to look up the container ID and remove it. ### Starting our updated app container -1. Now, start your updated app. +1. Now, rebuild your image and start your updated app. ```bash + docker build -t getting-started docker run -dp 3000:3000 getting-started ```