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
This is more of a general informative post following up a conversation in #falco with @mstemm.
Docker has depreciated the http://containers/json endpoint and all future API calls should be prepend the API version. e.g. http://v1.25/containers/json.
It is targeted for removal in the v17.12 release.
For further information, please see the below links:
As far as I could find, the docker client always uses an explicit version number ("v1.18" and "v1.24"). Going back through the code, it seems like it has always been the case.
As of this writing, Docker recommends at least v1.24, so we use that.
However, for e.g. RHEL 6/CentOS 6, which are stuck on Docker 1.7
with API version 1.19, we do a fallback request without the version
number. This way, we use v1.24 if possible, and the newest supported
version if not.
Closes: #900
As of this writing, Docker recommends at least v1.24, so we use that.
However, for e.g. RHEL 6/CentOS 6, which are stuck on Docker 1.7
with API version 1.19, we do a fallback request without the version
number. This way, we use v1.24 if possible, and the newest supported
version if not.
Closes: #900
This is more of a general informative post following up a conversation in #falco with @mstemm.
Docker has depreciated the
http://containers/json
endpoint and all future API calls should be prepend the API version. e.g.http://v1.25/containers/json
.It is targeted for removal in the v17.12 release.
For further information, please see the below links:
The text was updated successfully, but these errors were encountered: