alice eneyoaliyo.hashnode.dev·Aug 28, 2024Day 8: Fundamental terms and definitions that underpin the cybersecurity realm. 📚On Day 8 of the "Foundations of Cybersecurity" course on Coursera, l delved into crucial terms and definitions in cybersecurity. 📚 Here's a summary of the key concepts l covered: - Hacktivist: A hacker who supports political or social causes. - NIST...#cybersecurity
ashwini purwatashwini23.hashnode.dev·Jul 23, 2024A Guide to Docker Bind Mounts vs VolumesBind Mounts: In Docker, bind mounts are a method for sharing files or directories between the host machine and a Docker container. This allows changes to the files or directories on the host to be reflected inside the container and vice versa. Defin...docker-bind-mounts
ashwini purwatashwini23.hashnode.dev·Jul 22, 2024Beginner's Guide to Grafana: All the BasicsWhat is Grafana ? Grafana is a popular open-source data visualization and analytics platform that allows you to create custom dashboards and visualizations based on a variety of data sources. Grafana is often used for monitoring and analyzing metrics...27 readsGrafana
ashwini purwatashwini23.hashnode.dev·Jul 20, 2024Ansible: The Ultimate Guide for BeginnersIn the ever-evolving world of technology, we often come across terminologies that are pivotal to modern practices but might sound complex to a novice. Two such concepts that every IT professional should be familiar with are Infrastructure as Code (Ia...basic of ansible
ashwini purwatashwini23.hashnode.dev·Jul 19, 2024Multistage Docker BuildsWhat is Multistage docker build? With multi-stage builds, a Docker build uses one base image for compilation, packaging, and unit tests and then a separate image for the application runtime. As a result, the final image is smaller in size since it do...Docker
ashwini purwatashwini23.hashnode.dev·Jul 19, 2024Install web server app (Django) using Docker containerClone this repository and move to example folder git clone https://github.com/APurwat/Docker-Zero-to-Hero.git Browse a location cd /home/ash/Docker/Docker-Zero-to-Hero/examples/python-web-app Lets create Image docker build -t ashwini0246/my-first-do...37 readsDocker
ashwini purwatashwini23.hashnode.dev·Jul 18, 2024Docker first basic practical to run container and create an imageFor demo launch redhat linux OS from AWS Install docker in VM #yum install docker -y Start Docker and Grant Access A very common mistake that many beginners do is, After they install docker using the sudo access, they miss the step to Start the Dock...Docker
ashwini purwatashwini23.hashnode.dev·Jul 18, 2024Basic concept of Docker for DevopsIntroduction to Docker:Docker is a very popular and powerful open-source containerization platform that is used for building, deploying, and running applications. Docker allows you to decouple the application/software from the underlying infrastructu...Docker
ashwini purwatashwini23.hashnode.dev·Jul 18, 2024Python Libraries for DevOpsPython libraries that every Python developer should know. 1. NumPy NumPy (Numerical Python) is the foundational package for numerical computing in Python. It provides a high-performance multidimensional array object, and tools for working with these ...pythonbasics
ashwini purwatashwini23.hashnode.dev·Jul 18, 2024Basic of PythonWhat is Python? What are the benefits of using Python Python is a high-level, interpreted, general-purpose programming language. Being a general-purpose language, it can be used to build almost any type of application with the right tools/libraries. ...Python