Skip to content

Commit 20ffe24

Browse files
committedNov 27, 2017
node, syscontainer: replace /var/lib/docker mount point
with /var/lib/docker/containers so we don't leak /var/lib/docker/devicemapper mount points into the container. Reference: #15105 Signed-off-by: Giuseppe Scrivano <[email protected]>
1 parent 32e0704 commit 20ffe24

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎images/node/system-container/config.json.template

+3-2
Original file line numberDiff line numberDiff line change
@@ -414,10 +414,11 @@
414414
},
415415
{
416416
"type": "bind",
417-
"source": "/var/lib/docker",
418-
"destination": "/var/lib/docker",
417+
"source": "/var/lib/docker/containers",
418+
"destination": "/var/lib/docker/containers",
419419
"options": [
420420
"bind",
421+
"slave",
421422
"rw",
422423
"mode=755"
423424
]

0 commit comments

Comments
 (0)
Please sign in to comment.