-
Notifications
You must be signed in to change notification settings - Fork 616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for Docker >= 1.13.0 on Windows #729
Comments
Support for old APIs was removed in moby/moby#27908. |
Should have waited for 17 for MVB :p
- scott
On Mar 13, 2017, at 10:00 AM, Samuel Karp <[email protected]<mailto:[email protected]>> wrote:
Support for old APIs was removed in moby/moby#27908<moby/moby#27908>.
-
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#729 (comment)>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AAAjSFgA_Bh77XnGgaLj9gWBfH1L9kRjks5rlXXUgaJpZM4Mbbl3>.
|
How would that have helped?
…On 03/13/2017 10:07 AM, Scott Windsor wrote:
Should have waited for 17 for MVB :p
- scott
On Mar 13, 2017, at 10:00 AM, Samuel Karp
***@***.******@***.***>> wrote:
Support for old APIs was removed in
moby/moby#27908<moby/moby#27908>.
-
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on
GitHub<#729 (comment)>,
or mute the
thread<https://github.com/notifications/unsubscribe-auth/AAAjSFgA_Bh77XnGgaLj9gWBfH1L9kRjks5rlXXUgaJpZM4Mbbl3>.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#729 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAtB1jVFeXMN03ECadem8dY_mDgE_YRXks5rlXfdgaJpZM4Mbbl3>.
--
Samuel Karp
|
Any update on this? The current version of docker on windows doesn't even support docker stats so autoscaling groups don't work. |
@panmanphil This is currently being worked on in #783. |
An update here: while we've been working on support for newer API versions, we've run into some issues with pulling the |
As mentioned in #942 the latest Windows Core With Containers AMI (image name: |
@JonCubed, we created the new Windows_Server-2016-English-Core-ContainersLatest-* AMI for customers who would like to have the latest released version of Docker. Since the AMI is built monthly (to pick up Windows patches), the idea here is that it will also pick up whatever version of Docker is released. The version is the same one you get from installing the Docker package: Windows_Server-2016-English-Core-Containers-* will continue to have the version of Docker that is compatible with ECS. |
@EmmanuelTsouris thanks for explaining the difference between the AMIs |
As I mentioned in #729 (comment), we were investigating a bug with pulling #990 should fix this bug. |
We've released ECS agent v1.14.5, which now works with newer versions of Docker on Windows. |
Docker 1.13.0 on Windows dropped support for the 1.17 API version used by the ECS agent. Supporting Docker >= 1.13.0 on Windows means moving to an API >= 1.24. There are many differences between 1.17 and 1.24, and we'll need to maintain both codepaths in order to continue supporting Docker < 1.12.0 on Linux. Of particular concern are the changes involving the
Config
andHostConfig
in Docker'sCreateContainer
andStartContainer
APIs as well as the structure of information returned throughInspect
calls. Because some of theConfig
andHostConfig
content is generated by the ECS backend, we'll need to make changes there as well as in the agent in order to support Docker >= 1.13.0 on Windows.The text was updated successfully, but these errors were encountered: