Skip to content

Commit bc0fdac

Browse files
committed
Docker: require at least Docker client v1.6.0
1 parent 9ce7e46 commit bc0fdac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Stack/Docker.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,8 @@ checkDockerVersion envOverride docker =
680680
return ()
681681
_ -> throwM InvalidVersionOutputException
682682
_ -> throwM InvalidVersionOutputException
683-
where minimumDockerVersion = $(mkVersion "1.3.0")
684-
prohibitedDockerVersions = [$(mkVersion "1.2.0")]
683+
where minimumDockerVersion = $(mkVersion "1.6.0")
684+
prohibitedDockerVersions = []
685685

686686
-- | Remove the project's Docker sandbox.
687687
reset :: (MonadIO m) => Maybe (Path Abs Dir) -> Bool -> m ()

0 commit comments

Comments
 (0)