MSMayur S. Mutkekarinepisodes.hashnode.dev路Sep 13, 2023 路 6 min readIntroduction to Terraform and Terraform BasicsIn the ever-evolving landscape of infrastructure management and deployment, automation is the key to efficiency and scalability. Terraform, an open-source Infrastructure as Code (IaC) tool, has emerged as a powerhouse in this domain. It empowers orga...00
MSMayur S. Mutkekarinepisodes.hashnode.dev路Aug 13, 2023 路 2 min readGetting started with JenkinsWhat is Jenkins? Jenkins is an open-source continuous integration-continuous delivery and deployment (CI/CD) automation software DevOps tool written in the Java programming language. It is used to implement CI/CD workflows, called pipelines. Jenkin...00
MSMayur S. Mutkekarinepisodes.hashnode.dev路Aug 12, 2023 路 3 min readDocker's important interview questionsDocker Interview Docker is a good topic to ask in DevOps Engineer Interviews, mostly for freshers. One must surely try these questions in order to be better at Docker. Questions - Difference between Image, Container, and Engine: Image: A blueprint ...00
MSMayur S. Mutkekarinepisodes.hashnode.dev路Aug 11, 2023 路 2 min readDocker CheatsheetDocker Commands: Image Management: docker build: Build a Docker image from a Dockerfile. docker pull: Pull an image from a registry (e.g., Docker Hub). docker push: Push an image to a registry (e.g., Docker Hub). docker images: List Docker images...00
MSMayur S. Mutkekarinepisodes.hashnode.dev路Aug 9, 2023 路 4 min readRunning a Docker container using a Docker fileWhat's a Dockerfile? 馃 A Dockerfile is a text document containing all the commands a user might execute on the command line to assemble an image. Docker can automatically build images by reading instructions from a Docker file. To write a Dockerfile...00