From d0b3e60c89e48b5e3c8e55c02e4bf58cb3da3467 Mon Sep 17 00:00:00 2001 From: Tung Leo Date: Thu, 29 Feb 2024 22:00:10 +0700 Subject: [PATCH] doc: adjust layout --- README.md | 46 ++++++++++++++++++++-------------------------- 1 file changed, 20 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 48cca77..c91f817 100644 --- a/README.md +++ b/README.md @@ -13,39 +13,33 @@ Before you begin, make sure you have [Docker](https://docs.docker.com/engine/ins ## How to Build -1. **Clone the Repository:** +**1. Clone the Repository:** + ```bash + git clone https://github.com/tungbq/devops-toolkit.git + ``` - ```bash - git clone https://github.com/tungbq/devops-toolkit.git - ``` +**2. Navigate to the Repository:** + ```bash + cd devops-toolkit + ``` -2. **Navigate to the Repository:** +**3. Build the DevOps toolkit image:** - ```bash - cd devops-toolkit - ``` - -3. **Build the DevOps toolkit image:** - - ```bash - docker build -t devops-toolkit:latest . - ``` - -4. **Run the toolkit Image:** + ```bash + docker build -t devops-toolkit:latest . + ``` +**4. Run the toolkit Image:** - Start container - - ```bash - docker run -it --rm devops-toolkit:latest - ``` - +```bash +docker run -it --rm devops-toolkit:latest +``` - Check python version +```bash +docker run --rm devops-toolkit:latest python3 --version +``` - ```bash - docker run --rm devops-toolkit:latest python3 --version - ``` - - + ## Use the image from Docker Hub - To be implemented