From a7cde865c9a94ba27e24998f30c589b3c9e0b684 Mon Sep 17 00:00:00 2001 From: John Howard Date: Fri, 13 Nov 2015 12:51:05 -0800 Subject: [PATCH] Windows: Fixes comment Signed-off-by: John Howard Upstream-commit: e5261d6e4a1e96d4c0fa4b4480042046b695eda1 Component: engine --- components/engine/daemon/archive_windows.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/engine/daemon/archive_windows.go b/components/engine/daemon/archive_windows.go index 4e6c48a1ff..e7359318e8 100644 --- a/components/engine/daemon/archive_windows.go +++ b/components/engine/daemon/archive_windows.go @@ -4,7 +4,8 @@ package daemon // cannot be in a read-only volume. If it is not in a volume, the container // cannot be configured with a read-only rootfs. // -// This is a no-op on Windows which does not support volumes. +// This is a no-op on Windows which does not support read-only volumes, or +// extracting to a mount point inside a volume. TODO Windows: FIXME Post-TP4 func checkIfPathIsInAVolume(container *Container, absPath string) (bool, error) { return false, nil }