Munilakshmi G J100daysdevops.hashnode.dev·Nov 6, 2024Day 12 of 100 Days : Deep Dive into Docker Containers🐳 Why Are Containers So Lightweight? Unlike VMs, which each require a full operating system, containers share the host OS kernel. This makes them incredibly lightweight, as they don't need to load separate OS layers. Containers also include only the...Devops
Arish Ahmadblog.arishahmad.in·Sep 13, 2024Easy Explanation of Docker for BeginnersWhat is Docker? Docker is a platform that allows developers to package their applications into containers. These containers include everything the application needs to run, such as code, system libraries, and dependencies, ensuring the application be...cotainers vs virtual machines
SWATHI PUNREDDYswathireddy.hashnode.dev·Feb 25, 2024Docker Mastery: Essential Guide to Commands, Dockerfiles, Images, and ContainersIntroduction: Docker has revolutionized software development and deployment, providing developers with a powerful toolset for packaging and deploying applications using containers. In this guide, we'll explore the fundamentals of Docker, including es...6 likes·89 readsdocke basics
Daniel AdetunjiforfreeCodeCampfreecodecamp.org·Oct 23, 2023How Docker Containers Work – Explained for BeginnersA container is a lightweight, standalone, and executable software package that includes everything needed to run a piece of software. And one of the most popular tools for working with containers is Docker. Docker is both the name of the company (Doc...containers
freeCodeCampforfreeCodeCampfreecodecamp.org·Jun 6, 2022What Does K8s Mean? How to Set Up Kubernetes and Manage ClustersBy Sebastian Sigl You might've seen the term k8s in different sources, and wondered what it means. Well, it means Kubernetes. The abbreviation consists of: "k" which is the first letter of Kubernetes, "8" which is the number of letters between t...containers
freeCodeCampforfreeCodeCampfreecodecamp.org·Nov 11, 2021How to Dockerize a Flask ApplicationBy Ondiek Elijah Ochieng These days, developers need to develop, ship, and run applications quicker than ever. And fortunately, there's a tool that helps you do that – Docker. With Docker, you can now easily ship, test, and deploy your code quickly w...Docker
freeCodeCampforfreeCodeCampfreecodecamp.org·Feb 9, 2021Docker Deployment Guide – How to Deploy Containers to the Cloud with AWS LightsailBy Marcia Villalba Containers have become the de-facto way to develop applications nowadays. They provide a standard way to package all the dependencies that your application needs. But how you deploy a containerized application to the cloud? The cl...AWS
Farhan Hasin ChowdhuryforfreeCodeCampfreecodecamp.org·Feb 1, 2021The Docker Handbook – Learn Docker for BeginnersThe concept of containerization itself is pretty old. But the emergence of the Docker Engine in 2013 has made it much easier to containerize your applications. According to the Stack Overflow Developer Survey - 2020, Docker is the #1 most wanted plat...containerization
freeCodeCampforfreeCodeCampfreecodecamp.org·Dec 9, 2020What is Docker Used For? A Docker Container Tutorial for BeginnersBy Lucas Santos As a developer, you have probably heard of Docker at some point in your professional life. And you're likely aware that it has become important tech for any application developer to know. If you have no idea of what I'm talking about...containers
freeCodeCampforfreeCodeCampfreecodecamp.org·Jun 25, 2020How to Enable Live-reload on Docker-based Applications with Docker VolumesBy Erick Wendel In this post you'll learn how to configure a development environment with live-reload enabled. This will allow you to convert a legacy application so it uses Docker, Docker volumes, and docker-compose. Some developers turn up their no...Docker