From 6e00dae459c51139fa80be23c9e95412e17b7cf9 Mon Sep 17 00:00:00 2001 From: K Siva Prasad Reddy Date: Fri, 3 Nov 2023 07:14:25 +0530 Subject: [PATCH] Update titles --- step-1-getting-started.md | 4 ++-- step-3-local-development-environment.md | 2 +- step-5-use-reusable-containers.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/step-1-getting-started.md b/step-1-getting-started.md index cbb9ad5..acb38c5 100644 --- a/step-1-getting-started.md +++ b/step-1-getting-started.md @@ -9,7 +9,7 @@ Testcontainers libraries are compatible with Java 8+, but this workshop uses a S I would recommend using [SDKMAN](https://sdkman.io/) to install Java on your machine. -## Install Docker +### Install Docker Make sure you have a Docker environment available on your machine. @@ -39,7 +39,7 @@ Server: Docker Desktop 4.24.2 (124339) ... ``` -## Install Testcontainers Desktop +### Install Testcontainers Desktop [Testcontainers Desktop](https://testcontainers.com/desktop/) is a companion app for the open source Testcontainers libraries that makes local development and testing with real dependencies simple. diff --git a/step-3-local-development-environment.md b/step-3-local-development-environment.md index 8fbe84c..7b21dcb 100644 --- a/step-3-local-development-environment.md +++ b/step-3-local-development-environment.md @@ -1,4 +1,4 @@ -# Step 3: Local Development environment with Testcontainers +# Step 3: Local development environment with Testcontainers Our application uses PostgreSQL, Kafka, and LocalStack. Currently, if you run the `Application.java` from your IDE, you will see the following error: diff --git a/step-5-use-reusable-containers.md b/step-5-use-reusable-containers.md index d9f61ef..8c94067 100644 --- a/step-5-use-reusable-containers.md +++ b/step-5-use-reusable-containers.md @@ -1,4 +1,4 @@ -# Step 5: Use Reusable containers +# Step 5: Use reusable containers During the development, you will keep changing the code and verify the behavior either by running the tests or running the application locally. Recreating the containers everytime you restart the application