fn: update minimum docker version required. (#916)

Oracle Linux 7.4 backported versions still having issues
with freezing/terminating containers. 17.10.0-ce seems like
a resonable lowest common denominator.
This commit is contained in:
Tolga Ceylan
2018-04-04 16:43:30 -07:00
committed by Reed Allman
parent f635359ff8
commit c58caee78d
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ const (
func NewAgentConfig() (*AgentConfig, error) {
cfg := &AgentConfig{
MinDockerVersion: "17.06.0-ce",
MinDockerVersion: "17.10.0-ce",
MaxLogSize: 1 * 1024 * 1024,
}