Downloads:
141,263
Downloads of v 17.3.1.20170421:
1,166
Last Update:
26 Apr 2017
Package Maintainer(s):
Software Author(s):
- Docker Inc.
Tags:
docker-for-windows admin stable- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Docker for Windows (Stable)
This is not the latest version of Docker for Windows (Stable) available.
- 1
- 2
- 3
17.3.1.20170421 | Updated: 26 Apr 2017
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
141,263
Downloads of v 17.3.1.20170421:
1,166
Maintainer(s):
Software Author(s):
- Docker Inc.
Docker for Windows (Stable) 17.3.1.20170421
This is not the latest version of Docker for Windows (Stable) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Docker Inc. The inclusion of Docker Inc. trademark(s), if any, upon this webpage is solely to identify Docker Inc. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Exemption:
Requires newer OS.
Scan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Docker for Windows (Stable), run the following command from the command line or from PowerShell:
To upgrade Docker for Windows (Stable), run the following command from the command line or from PowerShell:
To uninstall Docker for Windows (Stable), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download docker-for-windows --internalize --version=17.3.1.20170421 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade docker-for-windows -y --source="'INTERNAL REPO URL'" --version="'17.3.1.20170421'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade docker-for-windows -y --source="'INTERNAL REPO URL'" --version="'17.3.1.20170421'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install docker-for-windows
win_chocolatey:
name: docker-for-windows
version: '17.3.1.20170421'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'docker-for-windows' do
action :install
source 'INTERNAL REPO URL'
version '17.3.1.20170421'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller docker-for-windows
{
Name = "docker-for-windows"
Version = "17.3.1.20170421"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'docker-for-windows':
ensure => '17.3.1.20170421',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 26 Apr 2017.
This installer is fully baked and tested, and comes with the latest GA version of Docker Engine along with experimental features in Docker Engine, which are enabled by default and configurable on Docker Daemon settings for experimental mode.
This is the best channel to use if you want a reliable platform to work with. (Be sure to disable experimental features for apps in production.)
These releases follow a version schedule with a longer lead time than the Edge releases, synched with Docker Engine releases and hotfixes.
On the Stable channel, you can select whether to send usage statistics and other data.
> ## Important Notes:
> * Docker for Windows requires 64bit Windows 10 Pro, Enterprise and Education (1511 November update, Build 10586 or later) and Microsoft Hyper-V. Please see What to know before you install for a full list of prerequisites.
> * You can switch between Edge and Stable versions, but you must have only one app installed at a time. Also, you will need to save images and export containers you want to keep before uninstalling the current version before installing another. For more about this, see the FAQs about Stable and Edge channels.
> * The installer that is used is always the latest version and therby not tied to the version of this package.
$ErrorActionPreference = 'Stop';
$packageName = 'docker-for-windows'
$softwareName = 'docker*'
$installerType = 'MSI'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
$validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
}
Log in or click on link to see number of positives.
- InstallDocker.msi (e3b1c1199a2b) - ## / 55
- docker-for-windows.17.3.1.20170421.nupkg (52a4411aa39d) - ## / 58
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
[Deprecated] Docker for Windows 99.0.0.0 | 44645 | Thursday, December 6, 2018 | Approved | |
Docker CE for Windows 18.06.1.19508-edge | 1207 | Wednesday, August 29, 2018 | Approved | |
Docker CE for Windows 18.06.1.19507 | 15431 | Wednesday, August 29, 2018 | Approved | |
Docker CE for Windows 18.06.0.19101-edge | 560 | Friday, July 27, 2018 | Approved | |
Docker CE for Windows 18.06.0.19098 | 5835 | Thursday, July 26, 2018 | Approved | |
Docker CE for Windows 18.06.0.19075 | 968 | Wednesday, July 25, 2018 | Approved | |
Docker CE for Windows 18.06.0.19070-edge | 274 | Wednesday, July 25, 2018 | Approved | |
Docker CE for Windows 18.06.0.18994-edge | 368 | Thursday, July 19, 2018 | Approved | |
Docker CE for Windows 18.05.0.18263-edge | 695 | Thursday, June 7, 2018 | Approved | |
Docker CE for Windows 18.05.0.17760-edge | 456 | Wednesday, May 16, 2018 | Approved | |
Docker CE for Windows 18.05.0.17439-edge | 518 | Thursday, April 26, 2018 | Approved | |
Docker CE for Windows 18.04.0.17151-edge | 442 | Thursday, April 12, 2018 | Approved | |
Docker CE for Windows 18.04.0.17070-edge | 349 | Monday, April 9, 2018 | Approved | |
Docker CE for Windows 18.03.1.17513 | 9972 | Monday, April 30, 2018 | Approved | |
Docker CE for Windows 18.03.1.17438 | 1025 | Thursday, April 26, 2018 | Approved | |
Docker CE for Windows 18.03.0.16762 | 3900 | Monday, March 26, 2018 | Approved | |
Docker CE for Windows 18.03.0.16761-edge | 344 | Monday, March 26, 2018 | Approved | |
Docker CE for Windows 18.03.0.16511-edge | 455 | Thursday, March 15, 2018 | Approved | |
Docker CE for Windows 18.03.0.16433-edge | 422 | Tuesday, March 13, 2018 | Approved | |
Docker CE for Windows 18.03.0.16164-edge | 465 | Tuesday, February 27, 2018 | Approved | |
Docker CE for Windows 18.02.0.15732-edge | 494 | Thursday, February 8, 2018 | Approved | |
Docker CE for Windows 18.02.0.15631-edge | 457 | Friday, February 2, 2018 | Approved | |
Docker CE for Windows 18.02.0.15489-edge | 464 | Friday, January 26, 2018 | Approved | |
Docker CE for Windows 18.01.0.15285-edge | 419 | Friday, January 19, 2018 | Approved | |
Docker CE for Windows 17.12.0.15139 | 6540 | Friday, January 12, 2018 | Approved | |
Docker CE for Windows 17.12.0.15048 | 929 | Tuesday, January 9, 2018 | Approved | |
Docker CE for Windows 17.12.0.15017-edge | 435 | Friday, January 5, 2018 | Approved | |
Docker CE for Windows 17.12.0.14896-edge | 448 | Thursday, December 21, 2017 | Approved | |
Docker CE for Windows 17.12.0.14802-edge | 389 | Friday, December 15, 2017 | Approved | |
Docker CE for Windows 17.12.0.14746-edge | 386 | Wednesday, December 13, 2017 | Approved | |
Docker CE for Windows 17.11.0.14328-edge | 408 | Tuesday, December 12, 2017 | Approved | |
Docker CE for Windows 17.11.0.14052-edge | 505 | Thursday, November 16, 2017 | Approved | |
Docker CE for Windows 17.11.0.13978-edge | 456 | Friday, November 3, 2017 | Approved | |
Docker CE for Windows 17.10.0.13788-edge | 467 | Tuesday, October 24, 2017 | Approved | |
Docker CE for Windows 17.09.1.14687 | 2802 | Tuesday, December 12, 2017 | Approved | |
Docker CE for Windows 17.09.0.13622-edge | 483 | Friday, October 6, 2017 | Approved | |
Docker CE for Windows 17.09.0.13620 | 4018 | Friday, October 6, 2017 | Approved | |
Docker CE for Windows 17.09.0.13529 | 976 | Monday, October 2, 2017 | Approved | |
Docker CE for Windows 17.09.0.13514-edge | 450 | Friday, September 29, 2017 | Approved | |
Docker CE for Windows 17.09.0.13392-edge | 426 | Friday, September 22, 2017 | Approved | |
Docker CE for Windows 17.09.0.13333-edge | 397 | Tuesday, September 19, 2017 | Approved | |
Docker CE for Windows 17.09.0.13221-edge | 489 | Thursday, September 7, 2017 | Approved | |
Docker CE for Windows 17.07.0.13125-edge | 436 | Friday, September 1, 2017 | Approved | |
Docker CE for Windows 17.07.0.13059-edge | 493 | Thursday, August 24, 2017 | Approved | |
Docker CE for Windows 17.07.0.13024-edge | 434 | Monday, August 21, 2017 | Approved | |
Docker CE for Windows 17.07.0.12979-edge | 475 | Saturday, August 12, 2017 | Approved | |
Docker CE for Windows 17.06.2.1319402 | 1912 | Friday, September 8, 2017 | Approved | |
Docker CE for Windows 17.06.2.1319401 | 509 | Thursday, September 7, 2017 | Approved | |
Docker CE for Windows 17.06.2.13194 | 680 | Wednesday, September 6, 2017 | Approved | |
Docker CE for Windows 17.06.1.13025 | 1352 | Tuesday, August 22, 2017 | Approved | |
Docker for Windows (Edge) 17.06.1.12818-edge | 556 | Monday, July 24, 2017 | Approved | |
Docker for Windows (Stable) 17.6.0.12801 | 2026 | Monday, July 17, 2017 | Approved | |
Docker for Windows (Stable) 17.6.0.12627 | 1415 | Friday, June 30, 2017 | Approved | |
Docker for Windows (Edge) 17.06-edge | 535 | Thursday, June 1, 2017 | Approved | |
Docker for Windows (Edge) 17.05-edge | 477 | Saturday, May 27, 2017 | Approved | |
Docker for Windows (Stable) 17.3.1.20170515 | 2800 | Monday, May 15, 2017 | Approved | |
Docker for Windows (Stable) 17.3.1.20170421 | 1166 | Wednesday, April 26, 2017 | Approved | |
Docker for Windows (Stable) 17.3.1.10743 | 887 | Wednesday, April 5, 2017 | Approved | |
Docker for Windows (Edge) 17.3.0.10625-beta | 458 | Wednesday, April 5, 2017 | Exempted | |
Docker for Windows (Edge) 17.3.0.10300-beta | 483 | Wednesday, March 15, 2017 | Exempted | |
Docker for Windows (Stable) 17.3.0.10296 | 1930 | Wednesday, March 15, 2017 | Approved | |
Docker for Windows (Install) 1.13.1.10069-beta | 441 | Tuesday, February 14, 2017 | Exempted | |
Docker for Windows (Install) 1.13.1.9961-beta | 430 | Tuesday, February 7, 2017 | Exempted | |
Docker for Windows (Install) 1.13.0.9805-beta | 423 | Monday, January 23, 2017 | Exempted | |
Docker for Windows (Install) 1.13.0.9795 | 1037 | Friday, January 20, 2017 | Approved | |
Docker for Windows (Install) 1.13.0.9733-beta | 407 | Tuesday, January 17, 2017 | Exempted | |
Docker for Windows (Install) 1.13.0.9606-beta | 431 | Sunday, January 8, 2017 | Exempted | |
Docker for Windows (Install) 1.13.0.9562-beta | 442 | Saturday, December 24, 2016 | Exempted | |
Docker for Windows (Install) 1.13.0.9442-beta | 388 | Tuesday, December 20, 2016 | Exempted | |
Docker for Windows (Install) 1.13.0.9266-beta | 373 | Friday, December 9, 2016 | Exempted | |
Docker for Windows (Install) 1.13.0.9123-beta | 413 | Wednesday, November 30, 2016 | Exempted | |
Docker for Windows (Install) 1.12.6.9655 | 413 | Thursday, January 12, 2017 | Approved | |
Docker for Windows (Install) 1.12.5.9503 | 1055 | Saturday, December 24, 2016 | Approved | |
Docker for Windows (Install) 1.12.3.8711-beta | 396 | Tuesday, November 29, 2016 | Exempted | |
Docker for Windows (Install) 1.12.3.8488 | 588 | Tuesday, November 29, 2016 | Approved | |
Docker for Windows (Install) 1.12.1 | 3481 | Wednesday, November 2, 2016 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Docker for Windows (Stable) and the Docker for Windows (Stable) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Docker for Windows (Stable), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.