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...DiscussDevops
Nahidnahidislam.hashnode.dev·Sep 20, 2024Docker and Dockerized ApplicationsWhat is Docker? Docker is a platform that allows developers to automate the deployment of applications inside lightweight, portable containers. Containers include everything an application needs to run, such as libraries, system tools, code, and runt...Discuss·1 likeDocker
Dinesh Kumar Kblog.dineshcloud.in·Aug 14, 2024Introduction to Docker file, Image & ContainerDockerfile A Dockerfile is a crucial component in Docker that automates the process of building Docker images. It consists of a series of instructions that Docker uses to create a container image, detailing how the application inside the container sh...DiscussDevOpsDevops
shailaja sutarshailaja.hashnode.dev·Jul 27, 2024Day 16 Task: Creating Docker image of python app and deploying on EC2 instance.First need configure the docker I have cloned a Git repository from GitHub using git clone command. Creating the own docker file and used the docker build command to notes-app to build the docker image once the image is build , it run a con...Discuss·28 readsDevops
Nikunj Vaishnavdevcloudjourney.hashnode.dev·Jul 24, 2024Docker for DevOps Engineers #Day-16Docker Docker is a software platform that allows you to build, test, and deploy applications quickly. Docker packages software into standardized units called containers that have everything the software needs to run, including libraries, system tools...Discuss·2 likes·48 readsDevOpsTrainWithShubham
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...DiscussDocker
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...DiscussDocker
Abhishek Singhopscribe.blog·Jun 12, 2024[Solved] You have reached your pull rate limit.Introduction: In recent years, Docker has become an indispensable tool for developers and DevOps engineers, simplifying the process of building, sharing, and running applications in containers. Kubernetes, on the other hand, has emerged as the leadin...Discuss·10 likes·199 readsDocker
AQIB HAFEEZaqibhafeez473.hashnode.dev·Sep 10, 2023Day 09 || Writing a Flask App Dockerfile ProjectIntroduction: In this tutorial, we will work with the "flask-blog-app" repository hosted on GitHub. We will clone the repository, set up a Flask app, write a Dockerfile, and push the image to Docker Hub. Step 1: Clone the GitHub Repository Open your...Discuss·1 like·37 readsDocker
AQIB HAFEEZaqibhafeez473.hashnode.dev·Sep 4, 2023Day 3 || Creating a Dockerfile in Docker: A Step-by-Step GuideIntroduction: Docker is a powerful tool for containerizing applications, making them portable and easy to deploy across different environments. One of the key components of using Docker is creating a Docker file. In this blog post, we'll walk you thr...Discuss·39 readsDocker