mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows [TP4] Require build 10586+
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
6c82fba2b3
commit
122568b314
1 changed files with 3 additions and 0 deletions
|
@ -71,6 +71,9 @@ func checkSystem() error {
|
|||
if osv.MajorVersion < 10 {
|
||||
return fmt.Errorf("This version of Windows does not support the docker daemon")
|
||||
}
|
||||
if osv.Build < 10586 {
|
||||
return fmt.Errorf("The Windows daemon requires Windows Server 2016 Technical Preview 4, build 10586 or later")
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue