© 2023 Hashnode
#90daysofdevops
Getting started with DevOps! What is Kernel? The kernel is a computer program that is the core of a computer’s operating system, with complete control over everything in the system. What is Shell? A s…
This is the Day 20 of the #90DaysofDevOps challenge in which we are going to summarize all the Docker commands in a single blog i.e you can say this is the CHEATSHEET of the docker. Docker Commands : …
This is the Day 19 of the #90DaysofDevOps challenge in which we are going to learn about Docker Volumes and Networks and will also see an example of docker-compose. As we had learned about the docker-…
Linux Commands pwd: to check the present working directory ls: list all the directories ls -a: list all including hidden files and directories mkdir: create a new directory mkdir –p A/B/C/…: make nest…
This is the Day18 of the #90DaysofDevOps challenge in which we are going to discuss what is docker-compose, how to create a docker-compose file and what are the commands to run the docker-compose file…
Bash: The Key to Streamlining Your Workflow on a Computer Bash is a type of software that allows you to interact with your computer using text commands. Think of it like a more advanced version of the…
This is the Day 17 of the #90DaysOfDevOps challenge in which we are deploying the To-Do App in the Docker container with the help of Dockerfile. But what is Dockerfile? Dockerfile : A Dockerfile is a …
### What is a package manager in Linux? In simpler words, a package manager is a tool that allows users to install, remove, upgrade, configure, and manage software packages on an operating system. The…
Today is more on Reading, Learning, and Implementing File permissions The concept of Linux File permission and ownership is important in Linux. Here, we will be working on Linux permissions and ownership and will do tasks on both of them…
Docker is a platform that provides containerization technology. It packs all the application's code with all its dependencies, frameworks, libraries, etc into a single container in an isolated environ…