Difference between revisions of "Bind mounts (Docker)"

From wikieduonline
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
https://docs.docker.com/storage/bind-mounts/
 
https://docs.docker.com/storage/bind-mounts/
 +
 +
 +
* <code>VOLUME</code> keyword in [[Dockerfile]]
 +
* <code>[[--mount]]</code>
 +
 +
 +
 +
<code>[[docker inspect]]</code>
 +
        "Mounts": [
 +
            {
 +
                "Type": "bind",
 +
                "Source": "/srv/rocketchat/uploads",
 +
                "Destination": "/app/uploads",
 +
                "Mode": "rw",
 +
                "RW": true,
 +
                "Propagation": "rprivate"
 +
            }
 +
        ],
  
  
Line 5: Line 23:
  
 
== Activities ==
 
== Activities ==
* Read https://docs.docker.com/storage/bind-mounts/
+
* Read Introduction to Docker Bind Mounts and Volumes: https://docs.docker.com/storage/bind-mounts/
  
 
== Related terms ==
 
== Related terms ==
 
* [[Docker volumes]]
 
* [[Docker volumes]]
 
+
* <code>[[VOLUME]]</code> keyword in <code>[[Dockerfile]]</code>
 +
* [[volume]]
  
 
== See also ==
 
== See also ==

Latest revision as of 08:37, 13 July 2023

Advertising: