From 449c5875217b3d44956fa262f0f9ef08b795f469 Mon Sep 17 00:00:00 2001 From: Gaurav Agarwal Date: Wed, 24 Jul 2019 17:40:55 +0530 Subject: [PATCH] Updating README. --- code-samples/08-Docker/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code-samples/08-Docker/README.md b/code-samples/08-Docker/README.md index 53a1eb9..bc3ef4c 100644 --- a/code-samples/08-Docker/README.md +++ b/code-samples/08-Docker/README.md @@ -8,10 +8,6 @@ Verify installation with: docker run hello-world:latest ``` -## Simple Problem - -Create your own `hello-java` example similar to `hello-go`! - ## Steps to create your own image and run a container * Write your own `Dockerfile` [Ref: https://docs.docker.com/engine/reference/builder] @@ -22,6 +18,10 @@ Create your own `hello-java` example similar to `hello-go`! Dockerfile - default name for docker file latest - default tag name +## Simple Problem + +Create your own `hello-java` example similar to `hello-go`! + ## Other Resources * Building a docker-like container from scratch using Go: [Video](https://www.youtube.com/watch?v=MHv6cWjvQjM&t=1316s), [Code](https://github.com/lizrice/containers-from-scratch)