Vanshika Sharmavanshikasharmaa.hashnode.dev·Dec 16, 2024Docker for DevOps EngineersDocker: Docker is a platform for developing, shipping, and running applications in lightweight, portable containers. Containers bundle an application and all its dependencies, ensuring it runs consistently across different environments. Docker uses ...1 likeDocker
Saad Asif Mujawaressentialsofdevops.hashnode.dev·Nov 21, 2024DockerfileDockerfile is a set of instructions (a blueprint) used to create a Docker Image. Docker Image is a package used to create a Docker Container. Docker Container is a running instance of the Docker Image. Dockerfile → Docker Image → Docker Container Ho...Docker
Mihai Marinescufeaturingcode.com·Nov 11, 2024Docker Intro for DUMMIES (like me)I don’t know why, but Docker seems confusing for me, that’s why I started learning some more about it. As a senior frontend engineer, I don’t like being at the hand of the senior backend so this is what I learned so far: Let’s say I want to create a ...Docker
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
Munilakshmi G J100daysdevops.hashnode.dev·Nov 5, 2024Day 11 of 100 Days : Introduction to Docker - Solving the Application Scalability Problem🚀 Setting the Stage: The Pre-Docker Era In the early days, each application typically ran on its own dedicated server. Running multiple applications? That meant multiple servers. This setup wasn't efficient: it took up a lot of space, was challengin...Devops
Spoorti Shettyspoorti.hashnode.dev·Oct 31, 2024Docker for DevOps EngineersHello, DevOps enthusiasts! Today, we’re diving into Docker, one of the essential tools for containerizing applications and streamlining deployments. Docker allows you to create isolated environments, known as containers, which makes building, testing...51 reads#90daysofdevops
Kandlagunta Venkata Siva Niranjan Reddygettingstartedwithdocker.hashnode.dev·Oct 28, 2024Mastering Docker: A Complete Guide with Best Practices1. What is Docker? Docker is an open-source platform for containerization that packages applications and their dependencies into units called containers. These containers are lightweight, portable, and allow developers to build, ship, and run applica...93 readsDocker
Chetan Mohanrao Mohoddevops-concepts-by-chetan.hashnode.dev·Oct 27, 2024Essential Docker Security Practices Everyone Should KnowIf you're diving into Docker or working with containers, this post is for you. Docker is a powerful tool for building and deploying apps, but security is critical. Let's look at some simple, practical steps to secure your Docker environment. 1. Use ...Docker
Hemanth Gangulahemanthgangula.hashnode.dev·Oct 26, 2024Creating and Managing Docker Containers: A Practical GuideIn this article, we’re diving into Docker containers! We’ll break down how they’re managed, show you how to run them in both foreground and background modes, and guide you through creating and managing containers step-by-step. It’s all hands-on, so b...78 readsSimplified-DockerDocker
Hemanth Gangulahemanthgangula.hashnode.dev·Oct 23, 2024Basic Docker Workflow: Build and Run Your First ContainerGet ready to explore Docker! In this article, we'll build a simple Docker image and run it from scratch. We'll cover key concepts like Docker files, images, and containers, equipping you with essential commands. Plus, don't miss the hands-on demo to ...Simplified-Docker#work flow of docker