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

@@ -26,7 +26,7 @@ The fastest way to experience Fn is to follow the quickstart below, or you can j
### Pre-requisites ### Pre-requisites
* Docker 17.06 or later installed and running * Docker 17.10.0-ce or later installed and running
* A Docker Hub account ([Docker Hub](https://hub.docker.com/)) (or other Docker-compliant registry) * A Docker Hub account ([Docker Hub](https://hub.docker.com/)) (or other Docker-compliant registry)
* Log Docker into your Docker Hub account: `docker login` * Log Docker into your Docker Hub account: `docker login`

View File

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