What is Docker Volume | How to create Volumes | What is Bind Mount | Docker Storage

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ก.ค. 2018
  • 11:26 Bind mount
    More about Raghav - automationstep...
    Today we will learn:
    1. What are Volumes
    2. How to create / list / delete volumes
    3. How to attach volume to a container
    4. How to share volume among containers
    5. What are bind mounts
    Volumes are the preferred mechanism for persisting data generated by and used by Docker containers
    : docker volume //get information
    : docker volume create
    : docker volume ls
    : docker volume inspect
    : docker volume rm
    : docker volume prune
    Instead of deleting containers one by one of docker ps -a , we can use docker container prune. and for docker ps (running containers) we can use docker rm $(ps -aq)
    Use of Volumes
    ===========
    Decoupling container from storage
    Share volume (storage/data) among different containers
    Attach volume to container
    On deleting container volume does not delete
    Commands
    docker run --name MyJenkins1 -v myvol1:/var/jenkins_home -p 8080:8080 -p 50000:50000 jenkins
    docker run --name MyJenkins2 -v myvol1:/var/jenkins_home -p 9090:8080 -p 60000:50000 jenkins
    docker run --name MyJenkins3 -v /Users/raghav/Desktop/Jenkins_Home:/var/jenkins_home -p 9191:8080 -p 40000:50000 jenkins
    References
    hub.docker.com...
    docs.docker.co...
    NOTES
    By default all files created inside a container are stored on a writable container layer
    The data doesn’t persist when that container is no longer running
    A container’s writable layer is tightly coupled to the host machine where the container is running. You can’t easily move the data somewhere else.
    Docker has two options for containers to store files in the host machine
    so that the files are persisted even after the container stops
    VOLUMES and BIND MOUNTS
    Volumes are stored in a part of the host filesystem which is managed by Docker
    Non-Docker processes should not modify this part of the filesystem
    Bind mounts may be stored anywhere on the host system
    Non-Docker processes on the Docker host or a Docker container can modify them at any time
    In Bind Mounts, the file or directory is referenced by its full path on the host machine.
    Volumes are the best way to persist data in Docker
    volumes are managed by Docker and are isolated from the core functionality of the host machine
    A given volume can be mounted into multiple containers simultaneously.
    When no running container is using a volume, the volume is still available to Docker and is not removed automatically. You can remove unused volumes using docker volume prune.
    When you mount a volume, it may be named or anonymous.
    Anonymous volumes are not given an explicit name when they are first mounted into a container
    Volumes also support the use of volume drivers, which allow you to store your data on remote hosts or cloud providers, among other possibilities.
    #DockerVolume #DockerBindMount #DockerContainers #DockerTutorials #DockerTraining #DevOpsTools #DevOpsTraining #DockerCommands #DockerForBeginners #DockerFreeTutorials #DockerforDevOps
    DOCKER PLAYLIST
    • Docker
    TH-cam PLAYLIST
    / @raghavpal
    TH-cam
    / automationstepbystep
    FACEBOOK
    / automationstepbystep
    TWITTER
    / automationsbs
    If you like videos on the channel Automation Step by Step, hit the like button and share with others.
    Click the SUBSCRIBE button and hit the bell icon to keep getting new videos.
    _______ ONLINE COURSES TO LEARN _______
    Visit - automationstepb...
    ----------- Follow -----------
    TH-cam - / automationstepbystep
    Share your knowledge with everyone and,
    Never Stop Learning
    Raghav

ความคิดเห็น • 613

  • @heshanwijeratne2155
    @heshanwijeratne2155 หลายเดือนก่อน

    I am a student currently learning Docker and have struggled to find clear explanations about Docker volumes. Your video is very clear, your voice is easy to understand, and as a thank you, I am now following you. Thank you again and again! i will be sharing your channel and your website with my colleagues too !!

    • @RaghavPal
      @RaghavPal  29 วันที่ผ่านมา

      You're very welcome Heshan.. humbled

  • @dragonball41876
    @dragonball41876 2 หลายเดือนก่อน

    Much appreciate with some simple but to-the-point examples! You are a really good teacher!

    • @RaghavPal
      @RaghavPal  2 หลายเดือนก่อน

      Glad it was helpful

  • @beunmin6
    @beunmin6 5 ปีที่แล้ว +5

    All of your tutorial with docker is easy to understand and easy to digest. Thank you for making this. This helps a lot.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome Angelo

  • @guptasaurabh688
    @guptasaurabh688 4 ปีที่แล้ว +4

    This is very easy and good explanation Raghav. You represent things in simple way. I really appreciate. Instead of deleting containers one by one of docker ps -a , we can use docker container prune. and for docker ps (running containers) we can use docker rm $(docker ps -aq).

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Thanks for adding Saurabh

  • @gautamdikshit9888
    @gautamdikshit9888 หลายเดือนก่อน

    Thank you. By far the most easy to follow explanation I've come across.

    • @RaghavPal
      @RaghavPal  หลายเดือนก่อน

      Most welcome Gautam.. humbled

  • @ramiworkstation
    @ramiworkstation 2 หลายเดือนก่อน

    Thank you very very very much for the lesson. What I like the most about your videos is that you teach in a calm and relatively slow pace. Which in my opinion is the key for successful learning. I send you love and blessing. Big like and subscribe from me. 🌻

    • @RaghavPal
      @RaghavPal  2 หลายเดือนก่อน

      Thanks a lot Rami.. humbled

  • @nawalsingh1789
    @nawalsingh1789 5 ปีที่แล้ว +24

    Wonderful explanation. I was really looking for such kind of video, easy, practical, and live with all the details.
    Thank you very much. Keep posting more videos.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      You're welcome Nawal.

  • @ethanrose6950
    @ethanrose6950 7 หลายเดือนก่อน

    the only resource on the internet that did not throw an error--including the documentation. thanks!

    • @RaghavPal
      @RaghavPal  7 หลายเดือนก่อน

      Glad to know it helped Ethan

  • @ranjithreddych
    @ranjithreddych 4 ปีที่แล้ว +2

    After reading tons of info and still confused,this video really helped. Thanks a lot.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      Happy to know this Ranjith

  • @OddBallTrails
    @OddBallTrails 5 ปีที่แล้ว +1

    You are more than a teacher. I am glad I found you. Thank you so so so much.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      Thanks Mukesh, humbled by your message

  • @rameshjp7045
    @rameshjp7045 4 ปีที่แล้ว +1

    Perfect! Understood docker volume in 15 minutes. Thanks a lot!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You are welcome Ramesh

    • @HK-sw3vi
      @HK-sw3vi 2 ปีที่แล้ว

      took me 15.07 mins

  • @samuelopoku-acheampong5601
    @samuelopoku-acheampong5601 ปีที่แล้ว

    Super, all of your tutorial with docker is easy to understand and easy to digest.

    • @RaghavPal
      @RaghavPal  ปีที่แล้ว

      Great to hear this Samuel

  • @VinothKumar-jw7iy
    @VinothKumar-jw7iy 2 ปีที่แล้ว

    Thank you very much for this tutorial am very new to docker and learning the concept one by one, your tutorial is more helpful to learn docker.

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว +1

      Most welcome Vinoth

  • @prithvirajsingh8537
    @prithvirajsingh8537 4 ปีที่แล้ว +1

    Easy, simple informative video thank u sir

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      Most welcome Prithviraj

  • @jsemblano9819
    @jsemblano9819 4 หลายเดือนก่อน

    As always Raghav awesome. I already “know” you a few years and you never disappoint

    • @RaghavPal
      @RaghavPal  4 หลายเดือนก่อน

      Thanks a ton J Semblano.. humbled

  • @maazkhan6489
    @maazkhan6489 4 ปีที่แล้ว

    very simple ....yet powerful explanation.

  • @mazharulboni5419
    @mazharulboni5419 7 หลายเดือนก่อน

    Very well explained for the beginners. Thank you Raghav

    • @RaghavPal
      @RaghavPal  7 หลายเดือนก่อน

      Thanks and welcome Mazharul

  • @nawazali6903
    @nawazali6903 4 ปีที่แล้ว +3

    Thanks for putting this video together. Clear and to-the-point. Keep up the good work!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad it was helpful Nawaz

  • @shantharamPK8160
    @shantharamPK8160 3 ปีที่แล้ว +4

    Very easy to understand tutorial.. 👌.
    I guess the problem with using port 70000 is exceeds the max allowed port no of 65535, which is a networking stipulation

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      thanks for sharing Shantharam

  • @hd3adpool
    @hd3adpool 4 ปีที่แล้ว +4

    Real quality videos with precise and clear explanation. I am grateful for these videos as they teach me so much in mere few minutes. Thanks a ton brother.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      You're welcome Harshil

  • @LeonRamkumar
    @LeonRamkumar 3 ปีที่แล้ว +1

    My god, I've been struggling with the binds for days! Thanks, I now finally get it. I'm an absolute docker beginner.

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว +1

      Glad I could help Leon

  • @prasenjitsaha5322
    @prasenjitsaha5322 4 ปีที่แล้ว +1

    Your way of explanation is great. Providing notes in the video description section is very helpful. Thanks for enlightening us with your knowledge.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad it was helpful Prasenjit

  • @nishamahendran1532
    @nishamahendran1532 2 ปีที่แล้ว +1

    Thank you so much for explaining about volume mapping in containers with hands on. Helped me a lot to understand easily. Can you also explain how this volume mapping is handled at the time of autoscaling the containers?

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Sure Nisha, will add more tutorials

  • @pavithren
    @pavithren 2 ปีที่แล้ว

    Thanks Raghav! You have explained the concept clearly and succinctly.

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว +1

      Glad it was helpful!

  • @prashanth6848
    @prashanth6848 3 ปีที่แล้ว

    this video is very informative. very well explained for begineers. thanks

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      You're very welcome Prashanth

  • @PhilipDenys
    @PhilipDenys 4 ปีที่แล้ว +7

    perfect run through... even learned a mac feature (splitscreen )

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Great to know Philip

  • @guylemay1471
    @guylemay1471 5 ปีที่แล้ว

    It reads like a Coconut-pie recipe my old granny used to have in her kitchen drawer ....I had to be a very good boy to get some of that pie - thank you so much!

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      So glad to read this . Thanks

  • @abhirupnandi442
    @abhirupnandi442 4 ปีที่แล้ว +1

    Very nice tutorial 👍. Simple & elegant. Thnks for making such useful tutorial 👍. Really learned a lot😀

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      So nice of you Abhirup

  • @ilyasjumadurdyew8074
    @ilyasjumadurdyew8074 4 ปีที่แล้ว +1

    Man, your job is VERY VERY helpful. I'm developer with about 6+ years of real development. But tranding shit like CI/CD or Docker is too magical for someone who is reviewing all packets before installing, who is managing environment with static Ip addresses, who thinks before making update.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Happy to know it helped Ilyas

  • @anurasenarathna1703
    @anurasenarathna1703 ปีที่แล้ว +1

    A very good series. Thank you very much for sharing your knowledge.

    • @RaghavPal
      @RaghavPal  ปีที่แล้ว

      Glad you enjoyed it Anura

  • @manojishere
    @manojishere 2 ปีที่แล้ว

    Very well explained with simple use cases

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Glad it was helpful Manoj

  • @shibasisnayak6062
    @shibasisnayak6062 2 ปีที่แล้ว +1

    You explained very precisely. Really appreciated. But I have one concern here how can we will get our deleted container data.

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Hi Shibasis, I have not tried, here is some information on this - stackoverflow.com/questions/29202787/restore-deleted-container-docker

  • @84prabhumishra
    @84prabhumishra 4 ปีที่แล้ว

    one of the best content over internet on docker volumes.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      Happy to see this Prabhu

  • @amrExplore
    @amrExplore 6 ปีที่แล้ว +6

    Very simple explanation with examples. Also if you can add networking module in addition will indeed help

    • @RaghavPal
      @RaghavPal  6 ปีที่แล้ว +1

      Hi Anand, I will check that soon

  • @glyakk
    @glyakk 4 ปีที่แล้ว

    This made understanding volumes crystal clear, much appreciated.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You're welcome Allen

  • @deeptikulkarni618
    @deeptikulkarni618 5 ปีที่แล้ว +2

    I like all of your videos... It's really very easy n interesting to understand compared to other over rated channels like edureka.. thanks a lot sir!!

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      So happy and humbled to see your message Deepti.

  • @tamilkumarannamalai5545
    @tamilkumarannamalai5545 5 ปีที่แล้ว +1

    Almost I learned basic .. today... Thank you very much !! Raghav

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome, keep learning.

  • @CharlieBelvo18
    @CharlieBelvo18 5 ปีที่แล้ว +10

    thanks a million for the explanation and making a vid on this, really helped my understanding

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome Charlie

  • @annakhuseinova8162
    @annakhuseinova8162 5 ปีที่แล้ว +3

    The way you explain things is amazing! :)

  • @fahadshakeel3223
    @fahadshakeel3223 4 ปีที่แล้ว

    Simple and practical approach with all the necessary explanation to understand the concept fully. Good Job! Thanks..

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad it was helpful Fahad

  • @Adam-gp3ij
    @Adam-gp3ij 4 ปีที่แล้ว

    Sir, you made this video since 2018 and its really helpful for me in 2020. Thank you so much from the heart

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      You're most welcome Adam, I will also be created latest videos. Check all here - automationstepbystep.com/

    • @Adam-gp3ij
      @Adam-gp3ij 4 ปีที่แล้ว

      Automation Step by Step - Raghav Pal i really want to learn Docker and Jenkins. I purchased a course from Udemmy, but was really hard to understand. Your way was amazing, I really got it from the first time. Your Jenkins and Docker courses are Kinda old? Do you have somewhere courses. I hope you have a Udemmy course. Please let me know. Much appreciated Adam

    • @Adam-gp3ij
      @Adam-gp3ij 4 ปีที่แล้ว

      Automation Step by Step - Raghav Pal I think I can see your courses on Udemmy. But I think Jenkins is old and I am not even able to install it on my Mac. However, can I get a promotion code for Docker course. Thank you

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Hi Adam, I will be creating Jenkins and Docker Udemy courses in some time.

  • @Iam_gr00t
    @Iam_gr00t 5 ปีที่แล้ว +1

    If you need to remove all running docker process in a single shot, You can use this command line.. docker rm -f $(docker ps -aq) . BTW, nice video..

  • @ateeqrehman6621
    @ateeqrehman6621 3 ปีที่แล้ว

    Thank you very much for this wonderful tutorial. Very Easy Very Informative.
    Love from Pakistan.

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Most welcome Ateeq

  • @MerinNakarmi
    @MerinNakarmi ปีที่แล้ว

    This tutorial is fantastic! Concise and to the point!

    • @RaghavPal
      @RaghavPal  ปีที่แล้ว

      Glad it was helpful Merin

  • @pakc2690
    @pakc2690 2 ปีที่แล้ว

    Thank you so much. Best explanation ever!

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      You're very welcome!

  • @IAm-xr2xh
    @IAm-xr2xh 4 ปีที่แล้ว

    I'm really like your videos. It's very clear and helpful. Thanks for your videos.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You are welcome!

  • @ashokreddypunyala9192
    @ashokreddypunyala9192 3 ปีที่แล้ว

    Hi Raghav, really you made my day Hatsoff to your explaination.

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว +1

      So happy to know this Ashok

  • @codenx2
    @codenx2 5 ปีที่แล้ว

    You are awesome raghav, to the point. No extra talk. Thanks for the video.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      Thanks a lot. Humbled

  • @hiroyukinumaguchi1984
    @hiroyukinumaguchi1984 4 ปีที่แล้ว

    Your explanation is very easy to understand and informative! Thank you!!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You're most welcome Hiroyuki

  • @richardbryangragasin5069
    @richardbryangragasin5069 4 ปีที่แล้ว

    great job! i will share this to my colleagues

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Awesome, thank you Richard

  • @motolola
    @motolola 4 ปีที่แล้ว

    Excellent, now I found a new favourite tech channel

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Happy to know Akinjide.
      Best wishes,
      Raghav

  • @ParticleClara
    @ParticleClara 3 ปีที่แล้ว +1

    Thanks so much, this is exactly what I needed to know!

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      You are so welcome Clara

  • @NasirAli-hs8np
    @NasirAli-hs8np 3 ปีที่แล้ว

    Love you Raghav! God bless you kind sir!

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Thanks a lot Nasir

  • @nikhilgupta5721
    @nikhilgupta5721 4 ปีที่แล้ว

    Excellent Raghav!! You explained it very well with practical example. You Rock Man!! Waiting for more such like videos.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Sure Nikhil, thanks for watching

  • @enricosaccheggiani3192
    @enricosaccheggiani3192 3 ปีที่แล้ว

    Very good job Raghav. Congratulations !! Very well explained . Thanks a lot

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Most welcome Enrico

  • @manojnaidu619
    @manojnaidu619 2 ปีที่แล้ว

    Amazing walkthrough. Loved it✌

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      thanks Manoj

  • @kevinye6288
    @kevinye6288 4 ปีที่แล้ว

    Just wanted to thank you Raghav Patel

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You're welcome Kevin

  • @rajeshkannan7837
    @rajeshkannan7837 4 ปีที่แล้ว +16

    for newbies, maximum port number can be 65535

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +3

      Thanks for adding Rajesh

  •  5 ปีที่แล้ว +1

    Very useful explanation. Thank you very much!

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      You're welcome Bernd Glückert

  • @farrukhahmedsid
    @farrukhahmedsid 4 ปีที่แล้ว

    Wow.. you easily explained it in detail. Excellent video!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad you liked it Farrukh

  • @vijayvaswani9717
    @vijayvaswani9717 3 ปีที่แล้ว

    Thanks Raghav,well explained..

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Most welcome Vijay

  • @pradeepkumar-ol2mk
    @pradeepkumar-ol2mk 4 ปีที่แล้ว +1

    Wonderful explaination sir. Thank you soo much.It helped me a lott

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You are most welcome Pradeep, Do follow other sessions and let me know if you face any issue

  • @shashankchoubey4914
    @shashankchoubey4914 4 ปีที่แล้ว +1

    Very nice explanation

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Thanks for watching Shashank

  • @nforlife
    @nforlife 3 ปีที่แล้ว

    My preferred teacher 🤗

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Thanks a lot

  • @nainglinthu753
    @nainglinthu753 ปีที่แล้ว

    Thank you so much, I keep learning from you. Thanks, a lot.

    • @RaghavPal
      @RaghavPal  ปีที่แล้ว

      So nice of you Naing Lin

  • @luxxart
    @luxxart 2 ปีที่แล้ว

    Really useful tutorial! Thank you!

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Most welcome

  • @bvenkatvinay1087
    @bvenkatvinay1087 2 หลายเดือนก่อน

    I like your videos so much sir good explaination

    • @RaghavPal
      @RaghavPal  2 หลายเดือนก่อน

      Thanks and welcome

  • @hebronspiritualmessages9382
    @hebronspiritualmessages9382 3 ปีที่แล้ว +1

    Thanks Ragav for sharing video..
    i have one doubt
    when we say docker volume create .. where this volume will be created ?
    is that volume avaiable in our local machine ..where this volume stored ?
    Also is there any other types of volumes avaiable to make container persistant ..?
    And how about Kubernetes volume works and where it is stored the volumes when we create volume using peristantvolumeclaim files
    kindly explain
    Thanks in adavnce..

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว +1

      Hi Jashva, I believe I discussed breifly on that and also volume and bind mounts. You can check more online and I will plan to add a separate session soon

  • @manueljordan317
    @manueljordan317 ปีที่แล้ว

    As usual, an excellent tutorial - huge thanks for the video!!!
    I though that through the creation of a volume through the `docker volume create volume_name` command - but using some option - would be possible define its path - but seems is not possible and docker always uses the '/var/lib/docker/volumes//_data' path
    A cold beer to you friend!

    • @RaghavPal
      @RaghavPal  ปีที่แล้ว +1

      Hi Manuel, thanks for watching

  • @suhasiniiraghuwansh
    @suhasiniiraghuwansh 3 ปีที่แล้ว

    Very well explained the concept of volume and bind mount.. Thanks a lot

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Most welcome Suhas

  • @gopalkrishnan7208
    @gopalkrishnan7208 4 ปีที่แล้ว

    Its Excellent Teaching and your videos

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      So nice of you Gopal

  • @codestorywithMIK
    @codestorywithMIK 3 ปีที่แล้ว

    Amazing. Thanks for the practical examples.

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      You're welcome Mazhar

  • @ezrachirii7006
    @ezrachirii7006 3 ปีที่แล้ว

    Thanks a lot i have been struggling to mount a volume on a windows machine the last bit saved me Great Content!

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      You're welcome Ezra

  • @pmc23
    @pmc23 5 ปีที่แล้ว

    I have watched your docker videos twice 😍 waiting for advanced docker tutorials :)

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      So happy to know this Harsha, I will do Advanced Docker. Cannot say a specific time, as I am engaged with multiple things, but will do it surely. Keep yourself subscribed to get notifications

  • @PankajSharma-vg1ty
    @PankajSharma-vg1ty 2 ปีที่แล้ว

    Great explanation sir.
    Thank you😊

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Most welcome Pankaj

  • @nethajimeda5654
    @nethajimeda5654 4 ปีที่แล้ว +1

    Excellent mostly at ending sharing key points shows u r 💖 love at work ...

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      Thanks for the message .

  • @fyqwerty
    @fyqwerty 2 ปีที่แล้ว

    thank you , ı understant volumes easy with this video

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Most welcome

  • @ravankolgowrishankar9952
    @ravankolgowrishankar9952 5 ปีที่แล้ว +1

    Hi Raghav,
    I followed all your Git , Jenkins, Docker can you create an application or a small program upload to git integrate with jenkins and use docker for deployment on any server that would be more helpful and can add more sense to understand the complete flow from end to end

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      Hi Ravankol, I will do it in some time

  • @melbienrigabitan9699
    @melbienrigabitan9699 4 ปีที่แล้ว +3

    Hi! That was absolutely simple yet interesting, thank you for making that vid I was able to understand volume more now. Out of question but, can you try making a vid using volume in docker-compose? Thank you!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว +1

      Happy to know that Chen, I will try after some time.

  • @cosmos4427
    @cosmos4427 3 ปีที่แล้ว +2

    Thanks for a very fast, clear and informative tutorial : )
    Q: Can the volume be a cloud storage bucket from a cloud provider like Google, So that a newly created container can read from it?
    If Yes y not make a video demonstrating using cloud volumes..
    I subscribed after watching first few minutes of this video..

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว +1

      Yes you can Adithya, I will plan a session

    • @carlellis9647
      @carlellis9647 2 ปีที่แล้ว

      The answer to that question is yes it can, which is why volumes are so convenient to use. They can be stored on the cloud and volumes can be shared by multiple containers. The Docker website has some good information on this. I'd suggest going to their site and reading up on Docker Volumes so you can get a good understanding of this.

  • @gauravprajapati9987
    @gauravprajapati9987 5 ปีที่แล้ว

    Simple and very easy to understand! Thanks!

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome Gaurav

  • @akant74
    @akant74 4 ปีที่แล้ว +1

    Great content.. especially loved the "recap" credits with music at the end.

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad you enjoyed it Kenny

  • @Michael17000
    @Michael17000 3 ปีที่แล้ว

    Beautiful tutorial run! Many thanks

  • @be236
    @be236 4 ปีที่แล้ว

    Excellent tutorial on Docker Volumes!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      So happy to know this Andrew

  • @rajdeepdas6098
    @rajdeepdas6098 5 ปีที่แล้ว +1

    Hi !! This was the most amazing tutorial on Dockers, Thanks a ton :)

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      You're welcome Rajdeep. Happy and Humbled to see your message

  • @tareqnasif2880
    @tareqnasif2880 5 ปีที่แล้ว +1

    u are amazing explaining. thanks man

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome Tareq

  • @nitinkaushik9764
    @nitinkaushik9764 5 ปีที่แล้ว +1

    Superb. Very Simple explanation. keep up the good work.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว

      You're welcome Nitin

  • @821ovi
    @821ovi 2 ปีที่แล้ว

    Great explanation. Thanks a lot.

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      You are welcome Avijit

  • @nergalgreedes5763
    @nergalgreedes5763 5 ปีที่แล้ว

    just wonderful. very well explained. Thank you.

    • @RaghavPal
      @RaghavPal  5 ปีที่แล้ว +1

      You're welcome Nergalgreed

  • @cryp0g00n4
    @cryp0g00n4 4 ปีที่แล้ว +1

    Hands down just amazing (the music)... and the teaching too ;)

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Thanks for the kind words

  • @dipteshchakraborty9163
    @dipteshchakraborty9163 3 ปีที่แล้ว

    Very good explanation , I have a course on udemy, but you explained better.

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Glad it was helpful Diptesh

  • @ambikaprasad9464
    @ambikaprasad9464 4 ปีที่แล้ว

    Thanks a lot for such a nice explanation

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You are most welcome Ambika

  • @poonamdavari2827
    @poonamdavari2827 3 ปีที่แล้ว

    Awesome explanation, please keep uploading more content on devops tools :)

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Sure I will Poonam

  • @shankarvani7503
    @shankarvani7503 2 ปีที่แล้ว

    Thanks for this wonderful video

    • @RaghavPal
      @RaghavPal  2 ปีที่แล้ว

      Most welcome Shankar

  • @SHELLAC85
    @SHELLAC85 4 ปีที่แล้ว

    Brilliant video. Thank you

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Very welcome

  • @veereshshenoy579
    @veereshshenoy579 3 ปีที่แล้ว

    Informative and easy to understand
    CHeers :)

    • @RaghavPal
      @RaghavPal  3 ปีที่แล้ว

      Glad it was helpful Veeresh

  • @zamundaking8108
    @zamundaking8108 4 ปีที่แล้ว

    Great work! Clear & simple. This helped me

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Happy to know that

  • @saisrikarmutya8244
    @saisrikarmutya8244 4 ปีที่แล้ว

    Very detailed video. You have explained it in a very simplified manner. :)

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Thanks for watching Sai

  • @agkhantmin10
    @agkhantmin10 4 ปีที่แล้ว

    Thank you so much .Very helpful

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      Glad it was helpful Robbin

  • @arturo7392
    @arturo7392 4 ปีที่แล้ว

    Oh man... what an excellent explanation...! Thanks!

    • @RaghavPal
      @RaghavPal  4 ปีที่แล้ว

      You're welcome Arturo