No video

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

11:26 Bind mount
More about Raghav - automationstepbystep.com/
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/_/jenkins/
docs.docker.com/storage/volumes/
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
KZread PLAYLIST
/ @raghavpal
KZread
/ 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 - automationstepbystep.com/
----------- Follow -----------
KZread - / automationstepbystep
Share your knowledge with everyone and,
Never Stop Learning
Raghav

Пікірлер: 613

  • @dragonball41876
    @dragonball418762 ай бұрын

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

  • @RaghavPal

    @RaghavPal

    2 ай бұрын

    Glad it was helpful

  • @beunmin6
    @beunmin65 жыл бұрын

    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

  • @gautamdikshit9888
    @gautamdikshit9888Ай бұрын

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

  • @RaghavPal

    @RaghavPal

    Ай бұрын

    Most welcome Gautam.. humbled

  • @heshanwijeratne2155
    @heshanwijeratne215528 күн бұрын

    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

    27 күн бұрын

    You're very welcome Heshan.. humbled

  • @ramiworkstation
    @ramiworkstation2 ай бұрын

    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

  • @guptasaurabh688
    @guptasaurabh6884 жыл бұрын

    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

  • @nawalsingh1789
    @nawalsingh17895 жыл бұрын

    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 жыл бұрын

    You're welcome Nawal.

  • @nawazali6903
    @nawazali69034 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad it was helpful Nawaz

  • @rameshjp7045
    @rameshjp70454 жыл бұрын

    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

  • @OddBallTrails
    @OddBallTrails5 жыл бұрын

    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

  • @ethanrose6950
    @ethanrose69507 ай бұрын

    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
    @ranjithreddych4 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Happy to know this Ranjith

  • @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

  • @hd3adpool
    @hd3adpool4 жыл бұрын

    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 жыл бұрын

    You're welcome Harshil

  • @prithvirajsingh8537
    @prithvirajsingh85374 жыл бұрын

    Easy, simple informative video thank u sir

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Most welcome Prithviraj

  • @maazkhan6489
    @maazkhan64894 жыл бұрын

    very simple ....yet powerful explanation.

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Thanks Maaz

  • @jsemblano9819
    @jsemblano98194 ай бұрын

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

  • @RaghavPal

    @RaghavPal

    4 ай бұрын

    Thanks a ton J Semblano.. humbled

  • @LeonRamkumar
    @LeonRamkumar3 жыл бұрын

    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 жыл бұрын

    Glad I could help Leon

  • @prasenjitsaha5322
    @prasenjitsaha53224 жыл бұрын

    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

  • @mazharulboni5419
    @mazharulboni54197 ай бұрын

    Very well explained for the beginners. Thank you Raghav

  • @RaghavPal

    @RaghavPal

    7 ай бұрын

    Thanks and welcome Mazharul

  • @VinothKumar-jw7iy
    @VinothKumar-jw7iy2 жыл бұрын

    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 жыл бұрын

    Most welcome Vinoth

  • @pavithren
    @pavithren2 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Glad it was helpful!

  • @84prabhumishra
    @84prabhumishra4 жыл бұрын

    one of the best content over internet on docker volumes.

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Happy to see this Prabhu

  • @manojishere
    @manojishere2 жыл бұрын

    Very well explained with simple use cases

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Glad it was helpful Manoj

  • @abhirupnandi442
    @abhirupnandi4424 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    So nice of you Abhirup

  • @anurasenarathna1703
    @anurasenarathna1703 Жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    Жыл бұрын

    Glad you enjoyed it Anura

  • @manojnaidu619
    @manojnaidu6192 жыл бұрын

    Amazing walkthrough. Loved it✌

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    thanks Manoj

  • @IAm-xr2xh
    @IAm-xr2xh4 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You are welcome!

  • @prashanth6848
    @prashanth68483 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    You're very welcome Prashanth

  • @pakc2690
    @pakc26902 жыл бұрын

    Thank you so much. Best explanation ever!

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    You're very welcome!

  • @nishamahendran1532
    @nishamahendran15322 жыл бұрын

    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

  • @glyakk
    @glyakk4 жыл бұрын

    This made understanding volumes crystal clear, much appreciated.

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You're welcome Allen

  • @annakhuseinova8162
    @annakhuseinova81625 жыл бұрын

    The way you explain things is amazing! :)

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    Thanks Anna

  • @nikhilgupta5721
    @nikhilgupta57214 жыл бұрын

    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

  • @guylemay1471
    @guylemay14715 жыл бұрын

    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

  • @enricosaccheggiani3192
    @enricosaccheggiani31923 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Most welcome Enrico

  • @fahadshakeel3223
    @fahadshakeel32234 жыл бұрын

    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

  • @ateeqrehman6621
    @ateeqrehman66213 жыл бұрын

    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

  • @luxxart
    @luxxart2 жыл бұрын

    Really useful tutorial! Thank you!

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Most welcome

  • @deeptikulkarni618
    @deeptikulkarni6185 жыл бұрын

    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 жыл бұрын

    So happy and humbled to see your message Deepti.

  • @Adam-gp3ij
    @Adam-gp3ij4 жыл бұрын

    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 жыл бұрын

    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.

  • @richardbryangragasin5069
    @richardbryangragasin50694 жыл бұрын

    great job! i will share this to my colleagues

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Awesome, thank you Richard

  • @CharlieBelvo18
    @CharlieBelvo185 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Charlie

  • @farrukhahmedsid
    @farrukhahmedsid4 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad you liked it Farrukh

  • @amrExplore
    @amrExplore6 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    6 жыл бұрын

    Hi Anand, I will check that soon

  • @codenx2
    @codenx25 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    Thanks a lot. Humbled

  • @motolola
    @motolola4 жыл бұрын

    Excellent, now I found a new favourite tech channel

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Happy to know Akinjide. Best wishes, Raghav

  • @shantharamPK8160
    @shantharamPK81603 жыл бұрын

    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

  • @ashokreddypunyala9192
    @ashokreddypunyala91923 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    So happy to know this Ashok

  • @tamilkumarannamalai5545
    @tamilkumarannamalai55455 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome, keep learning.

  • @nforlife
    @nforlife3 жыл бұрын

    My preferred teacher 🤗

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Thanks a lot

  • @hiroyukinumaguchi1984
    @hiroyukinumaguchi19844 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You're most welcome Hiroyuki

  • @be236
    @be2364 жыл бұрын

    Excellent tutorial on Docker Volumes!

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    So happy to know this Andrew

  • @NasirAli-hs8np
    @NasirAli-hs8np3 жыл бұрын

    Love you Raghav! God bless you kind sir!

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Thanks a lot Nasir

  • @Michael17000
    @Michael170003 жыл бұрын

    Beautiful tutorial run! Many thanks

  • @PankajSharma-vg1ty
    @PankajSharma-vg1ty2 жыл бұрын

    Great explanation sir. Thank you😊

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Most welcome Pankaj

  • @shashankchoubey4914
    @shashankchoubey49144 жыл бұрын

    Very nice explanation

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Thanks for watching Shashank

  • @shibasisnayak6062
    @shibasisnayak60622 жыл бұрын

    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

  • @vijayvaswani9717
    @vijayvaswani97173 жыл бұрын

    Thanks Raghav,well explained..

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Most welcome Vijay

  • @pradeepkumar-ol2mk
    @pradeepkumar-ol2mk4 жыл бұрын

    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

  • @akant74
    @akant744 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad you enjoyed it Kenny

  • @821ovi
    @821ovi2 жыл бұрын

    Great explanation. Thanks a lot.

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    You are welcome Avijit

  • @ezrachirii7006
    @ezrachirii70063 жыл бұрын

    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

  • @PhilipDenys
    @PhilipDenys4 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Great to know Philip

  • @RadhaKrishna-kyc
    @RadhaKrishna-kyc4 жыл бұрын

    Fantastic tutorial Sir

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Most welcome Radha

  • @bvenkatvinay1087
    @bvenkatvinay10872 ай бұрын

    I like your videos so much sir good explaination

  • @RaghavPal

    @RaghavPal

    2 ай бұрын

    Thanks and welcome

  • @ravankolgowrishankar9952
    @ravankolgowrishankar99525 жыл бұрын

    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 жыл бұрын

    Hi Ravankol, I will do it in some time

  • 5 жыл бұрын

    Very useful explanation. Thank you very much!

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Bernd Glückert

  • @nainglinthu753
    @nainglinthu753 Жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    Жыл бұрын

    So nice of you Naing Lin

  • @gopalkrishnan7208
    @gopalkrishnan72084 жыл бұрын

    Its Excellent Teaching and your videos

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    So nice of you Gopal

  • @suhasiniiraghuwansh
    @suhasiniiraghuwansh3 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Most welcome Suhas

  • @ambikaprasad9464
    @ambikaprasad94644 жыл бұрын

    Thanks a lot for such a nice explanation

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You are most welcome Ambika

  • @ParticleClara
    @ParticleClara3 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    You are so welcome Clara

  • @veereshshenoy579
    @veereshshenoy5793 жыл бұрын

    Informative and easy to understand CHeers :)

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    Glad it was helpful Veeresh

  • @TricoliciSerghei
    @TricoliciSerghei2 жыл бұрын

    Heyyy, thanks a ton!! Very nice video with a lot of useful information.

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Glad it was helpful!

  • @shankarvani7503
    @shankarvani75032 жыл бұрын

    Thanks for this wonderful video

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Most welcome Shankar

  • @cosmos4427
    @cosmos44273 жыл бұрын

    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 жыл бұрын

    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.

  • @SHELLAC85
    @SHELLAC854 жыл бұрын

    Brilliant video. Thank you

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Very welcome

  • @arturo7392
    @arturo73924 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You're welcome Arturo

  • @AnandRaj-zy8qt
    @AnandRaj-zy8qt5 жыл бұрын

    thanks raghav pal very useful !!!!!!!!!!!!!!

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Anand

  • @gauravprajapati9987
    @gauravprajapati99875 жыл бұрын

    Simple and very easy to understand! Thanks!

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Gaurav

  • @hebronspiritualmessages9382
    @hebronspiritualmessages93823 жыл бұрын

    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 жыл бұрын

    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

  • @kevinye6288
    @kevinye62884 жыл бұрын

    Just wanted to thank you Raghav Patel

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    You're welcome Kevin

  • @rajdeepdas6098
    @rajdeepdas60985 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

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

  • @jup3607
    @jup36074 жыл бұрын

    Good explanation. Cheers

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad it helped Dimitar

  • @cryp0g00n4
    @cryp0g00n44 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Thanks for the kind words

  • @pmc23
    @pmc235 жыл бұрын

    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

  • @masumehjavanbakht9499
    @masumehjavanbakht94992 жыл бұрын

    This was really excellent. Thanks a lot for making such a nice videos.

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    So nice of you

  • @richardlanglois5183
    @richardlanglois51835 жыл бұрын

    Great presentation!

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    Thanks Richard

  • @fyqwerty
    @fyqwerty2 жыл бұрын

    thank you , ı understant volumes easy with this video

  • @RaghavPal

    @RaghavPal

    2 жыл бұрын

    Most welcome

  • @agkhantmin10
    @agkhantmin104 жыл бұрын

    Thank you so much .Very helpful

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad it was helpful Robbin

  • @nitinkaushik9764
    @nitinkaushik97645 жыл бұрын

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

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Nitin

  • @Ghost_1823
    @Ghost_18234 жыл бұрын

    Nicely explained. Precise. Thanks :)

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad it was helpful Sayanta

  • @hesperaux
    @hesperaux4 жыл бұрын

    Hi Raghav, Thanks for your video. It was useful. However, I was hoping you would address the concern of concurrent access to the same data store. Is it true to say that multiple docker containers can use the same volumes, but only if they are not modifying the same data simultaneously? Wouldn't accessing certain application data cause inconsistencies in that data, if multiple containers were using it at the same time? I assume the answer is yes. And so if that is true, what do we do about it? Would we have to look at load balancing abstractions between the application and the user, in this case, or is there a docker solution to this problem? Thanks!

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Hi, I believe this is a common scenario and should be taken care by the system and do the updates real time. I will explore more on this

  • @tareqnasif2880
    @tareqnasif28805 жыл бұрын

    u are amazing explaining. thanks man

  • @RaghavPal

    @RaghavPal

    5 жыл бұрын

    You're welcome Tareq

  • @codestorywithMIK
    @codestorywithMIK3 жыл бұрын

    Amazing. Thanks for the practical examples.

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    You're welcome Mazhar

  • @sabburaj
    @sabburaj4 жыл бұрын

    Very very nice explanation, thank you very much. I love each of your videos!! Keep posting, it is really useful.

  • @RaghavPal

    @RaghavPal

    4 жыл бұрын

    Glad you like them Narayan

  • @ourtech6267
    @ourtech62673 жыл бұрын

    Thank you .. !! Helped a lot

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    You're welcome Rohit

  • @ravilanka5030
    @ravilanka50303 жыл бұрын

    The best short videos with more info, thanks a lot sir,keep gng

  • @RaghavPal

    @RaghavPal

    3 жыл бұрын

    So nice of you Ravi