You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 1, 2021. It is now read-only.
// Minimum docker engine version supported by swarm.
minSupportedVersion = version.Version("1.6.0")
While I tried with Swarm 1.2.3 and Docker 1.6.0, unfortunately there is some incompatibility in the API. Swarm uses engine-api to connect with docker's API, while docker 1.6.0's API version is too old to support engine-api, such as /info API. Related issue #2150
And I tried docker 1.7.0, although the /info API will be OK, there is something wrong for engine-api to support docker 1.7.0's event API. Therefore, failed again.
docker 1.7.1 failed as well.
And I tried docker 1.8.0, it works fine with Swarm 1.2.3.
So, I think we should update minSupportedVersion in Swarm.
In addition we see that in CI, Swarm supports docker 1.9.0.
Hi, All,
Using Swarm we are all very concerned about what is the minimum docker engine version Swarm supports.
In https://github.com/docker/swarm/blob/master/cluster/engine.go#L37, Swarm implies that
While I tried with Swarm 1.2.3 and Docker 1.6.0, unfortunately there is some incompatibility in the API. Swarm uses engine-api to connect with docker's API, while docker 1.6.0's API version is too old to support engine-api, such as /info API. Related issue #2150
And I tried docker 1.7.0, although the /info API will be OK, there is something wrong for engine-api to support docker 1.7.0's event API. Therefore, failed again.
docker 1.7.1 failed as well.
And I tried docker 1.8.0, it works fine with Swarm 1.2.3.
So, I think we should update minSupportedVersion in Swarm.
In addition we see that in CI, Swarm supports docker 1.9.0.
My environment:
The text was updated successfully, but these errors were encountered: