We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d5079 commit cff9376Copy full SHA for cff9376
Sunlife_Notes
@@ -140,6 +140,18 @@
140
6. Pull the image with following command ( you can remove the image first and then you can run below command to restore the image)
141
142
docker image pull localhost:5000/ubuntu
143
+
144
+ ------------------------Storage------------------
145
146
+docker volume create demo-vol
147
+docker volume ls //to list the volumes
148
+docker run -it --mount source=demo-vol,destination=/app -d ubuntu
149
+docker run -it --mount source=demo-vol,destination=/test --mount source=demo-vol1,destination=/test1 -d ubuntu
150
151
+----------Docker Bind Mount Example
152
153
+docker run -it -v /home/ubuntu/mount:/demo -d ubuntu
154
155
156
157
0 commit comments