Saad Asif Mujawaressentialsofdevops.hashnode.dev·4 hours agoDockerfileDockerfile 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...DiscussDocker
Neeraj Guptaminex.hashnode.dev·16 hours agoSimple Docker-Compose Deployment for Python-based Todo ApplicationsThis blog will show how to deploy the todo application with a docker-compose file. About application This application setup consists of two main components orchestrated using Docker Compose: a PostgreSQL database and a Todo application. Here's a brie...Discuss·1 likeDocker
Chintamani Tarechintamani1804.hashnode.dev·Nov 20, 2024🚀 Day 17: Dockerfile – First DevOps Project with Docker 🚀Hey there, DevOps enthusiasts! 👋 Welcome to Day 17 of the #90DaysOfDevOps challenge. Today, we're diving into Docker and exploring the magical world of the Dockerfile. By the end of this blog, you'll have a shiny new Dockerized web app ready to flau...DiscussTrainWithShubham
Prashant Sharmaprashantoncloud.hashnode.dev·Nov 17, 2024A Beginner's Guide to Docker: From Writing a Dockerfile to Pushing Your Image to Docker HubGetting started with Docker involves a series of steps, from writing a Dockerfile to building and pushing Docker images to Docker Hub. Below is a step-by-step guide on how to achieve this, including Docker commands and snippets: 1. Install Docker Fir...DiscussDocker
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Nov 17, 2024☑️Day 71: Project – Django To-Do List🚀🔹Table of Contents : Introduction Tasks Performed Docker Installation and Configuration Jenkins Installation and Setup Integrating Jenkins with Docker Key Insights Gained Conclusion Today, I made significant progress in completing the next...Discuss·10 likesDevops
Jayesh Nalawadejayeshdevops.hashnode.dev·Nov 16, 2024Docker Commands (part-1)Beginner Commands: docker --version Check the Docker version installed on your system. Example: docker --version docker pull <image> Download a Docker image from Docker Hub. Example: docker pull ubuntu docker build -t <tag> <path> Build a...Discuss·1 likeDevops LearningAWS
Ammar Khanfordocker_project_for_devopsdocker-project-devops.hashnode.dev·Nov 15, 2024Docker Project for DevOps EngineersToday, we're diving into something really exciting: Docker. If you're a DevOps enthusiast or developer looking to streamline your workflow, Docker is an essential tool. In this post, we'll walk you through how to create a simple web application using...DiscussDevops
Jayesh Nalawadejayeshdevops.hashnode.dev·Nov 13, 2024Docker BasicsDocker is a popular platform for developing, shipping, and running applications in isolated environments called containers. Containers package all the dependencies, configurations, and code an application needs, making it portable and consistent acro...DiscussDevops LearningAWS
Saifulla SyedforDockerdocker1.hashnode.dev·Nov 12, 2024Understanding Dockerfile, Docker Images, and ContainersDockerfile: The Blueprint for Docker Images A Dockerfile is a simple text file that has a set of instructions for Docker to build a Docker image. You can think of it like a blueprint that tells Docker how to set up your application step by step. It t...DiscussDockerfile
Munilakshmi G J100daysdevops.hashnode.dev·Nov 11, 2024Day 16 of 100 Days : Understanding Docker Volumes and Bind Mounts for Persistent StorageIntroduction In Docker, containers are designed to be ephemeral, meaning that when they are stopped or removed, they lose all data stored within them. This can be a problem for applications that need to retain data, such as logs or user data, even af...Discussvolume