Md. Kaiyomkaiyom.hashnode.dev·Dec 6, 2024Nginx FTP server with Docker and multiple volumeHere, we are creating ftp server with nginx docker image and mounting multiple directory as volume, so that we can access those file over the network. sudo docker run -d --name nginx-ftp --restart=unless-stopped -p 8080:80 -v /home/user/movie/:/usr/s...Docker
Navya Anavyadevops.hashnode.dev·Nov 26, 2024Expanding Root Partition on AWS EC2: Resolving Disk Space IssuesDisk space shortages on the root partition can lead to system instability and service failures. This guide explains how to resolve this issue by expanding the root partition and filesystem on an AWS EC2 instance. It also includes additional steps to ...AWS
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...volume
Dhruv Moradiyadhruvmoradiya.hashnode.dev·Nov 10, 2024Day 36 Managing Persistent Volumes in Kubernetes 🚀Introduction Yesterday, you mastered ConfigMaps and Secrets in Kubernetes. Today, we’re diving deeper into Kubernetes storage with Persistent Volumes (PV) and Persistent Volume Claims (PVC)—essential components for managing data in Kubernetes deploym...90Dayofdevopsk8s
Fatima Jannetmahia.hashnode.dev·Oct 18, 2024Section 6: EC2 Instance StorageDisclaimer: This blog is a quick rundown of the theory for the AWS Certified Cloud Practitioner (CCP) exam. I’d recommend hands-on practice to really get the hang of things! Hands-on experience is highly recommended EBS Overview What is EBS volume E...AWS Cloud Practitioner (short notes, no hands-on)Cloud
Kedar Pattanshettikedarpattanshetti.hashnode.dev·Oct 11, 2024☑️Day 40: Exploring Volume in Kubernetes🚀🔹Table of Contents : Introduction to Volumes in Kubernetes Types of Volumes in Kubernetes Hands-On Task: Using emptyDir Volume Applying the YAML Configuration Working with the Volume Stopping and Restarting the Pod Key Commands Used Real-Tim...10 likesDevops
Santhosh Haridassaws-devops-project.hashnode.dev·Oct 10, 2024🚀 Day-4: Launched a Linux OS EC2 Instance with Volume Management & Explored Amazon EBS! 🖥️💻Step-by-Steps Today was a productive day working with AWS cloud infrastructure, focusing on EC2 and EBS storage management. Here's a breakdown of what I achieved: Task 1: Linux OS EC2 Instance with Volume Management 1️⃣ Launched a Linux OS EC2 instan...AWS
Abishek Kafledevops.abisec.xyz·Oct 8, 2024Attach Volume to EC2 InstanceTasks An instance named datacenter-ec2 and a volume named datacenter-volume already exists in us-east-1 region. Attach the datacenter-volume volume to the datacenter-ec2 instance, make sure to set the device name to /dev/sdb while attaching the volu...Cloud PlatformsAWS
Abishek Kafledevops.abisec.xyz·Oct 7, 2024Create GP3 VolumeTasks Create a volume with the following requirements: Name of the volume should be xfusion-volume. Volume type must be gp3. Volume size must be 2 GiB. Steps Go to volumes : As per tasks: - Volume type : gp3 - Volume size : 2GiB Name t...Cloud Platformsgp3
Muhammad Hassanhassandevops.site·Sep 26, 2024Understanding Docker Volumes, Bind Mounts, and Volume Mounting: A Detailed GuideWhen working with Docker, managing persistent storage is a key aspect of ensuring your applications have access to the data they need, even when containers are stopped or restarted. In this blog, we'll dive deep into Docker volumes, bind mounts, and ...Docker