From d25cd9978c2548317cf408fed30f46639a683a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Muhammed=20Tanr=C4=B1kulu?= Date: Wed, 19 Feb 2020 16:50:46 +0100 Subject: [PATCH] Update tutorial.md `docker build -t tutorial_app -f Dockerfile .` will create `tutorial_app` image with `latest` tag. I think the correct one should be `docker build -t golemfactory/tutorialapp:1.0.0 -f Dockerfile .` --- tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial.md b/tutorial.md index 0572b62..aa1a2d9 100644 --- a/tutorial.md +++ b/tutorial.md @@ -785,7 +785,7 @@ In this section we're going to build a Docker image with our application. Please In order to build the image, execute the following command in the `image` directory: ```bash -docker build -t tutorial_app -f Dockerfile . +docker build -t golemfactory/tutorialapp:1.0.0 -f Dockerfile . ``` That's it!