diff --git a/code-samples/08-Docker/README.md b/code-samples/08-Docker/README.md index bc3ef4c..d410ad4 100644 --- a/code-samples/08-Docker/README.md +++ b/code-samples/08-Docker/README.md @@ -10,7 +10,7 @@ docker run hello-world:latest ## Steps to create your own image and run a container -* Write your own `Dockerfile` [Ref: https://docs.docker.com/engine/reference/builder] +* Write your own `Dockerfile`. Documentation: - Refer [hello-go/Dockerfile](https://github.com/AgarwalConsulting/java-training/blob/master/code-samples/08-Docker/hello-go/Dockerfile) * `docker build -t : .` * `docker run ` diff --git a/code-samples/09-Spring/README.md b/code-samples/09-Spring/README.md index bbee218..7c9d4c1 100644 --- a/code-samples/09-Spring/README.md +++ b/code-samples/09-Spring/README.md @@ -3,7 +3,7 @@ * `cd gs-rest-service` * `mvn clean package` * `java -jar target/gs-rest-service-0.1.0.jar` -* Access `http://localhost:8080/greeting` +* Access ## Task