Downloads:
141,263
Downloads of v 1.13.0.9562-beta:
442
Last Update:
24 Dec 2016
Package Maintainer(s):
Software Author(s):
- Docker Inc.
Tags:
docker-for-windows admin- 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 (Install)
This is a prerelease version of Docker for Windows (Install).
- 1
- 2
- 3
1.13.0.9562-beta | Updated: 24 Dec 2016
- 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 1.13.0.9562-beta:
442
Maintainer(s):
Software Author(s):
- Docker Inc.
Docker for Windows (Install) 1.13.0.9562-beta
This is a prerelease version of Docker for Windows (Install).
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 Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Unknown
Scan Testing Successful:
No detections found in any package files
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Docker for Windows (Install), run the following command from the command line or from PowerShell:
To upgrade Docker for Windows (Install), run the following command from the command line or from PowerShell:
To uninstall Docker for Windows (Install), 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=1.13.0.9562-beta --pre --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="'1.13.0.9562-beta'" --prerelease [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="'1.13.0.9562-beta'" --prerelease
$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: '1.13.0.9562-beta'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
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 '1.13.0.9562-beta'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller docker-for-windows
{
Name = "docker-for-windows"
Version = "1.13.0.9562-beta"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'docker-for-windows':
ensure => '1.13.0.9562-beta',
install_options => ['--prerelease'],
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.
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
An integrated, easy-to-deploy environment for building, assembling, and shipping applications from a Windows PC, Docker for Windows is a native Windows application with a native user interface and auto-update capability, deeply integrated with Windows native virtualization, Hyper-V, networking and file system, making it faster and more reliable than previous ways of getting Docker on a Windows PC.
Requires Microsoft Windows 10 Professional or Enterprise 64-bit
For previous versions get Docker Toolbox (no package yet).
Note:
This installer offers cutting edge features and comes with the experimental version of Docker Engine, which is described in the Docker Experimental Features README on GitHub.
This is the best channel to use if you want to experiment with features we are working on as they become available, and can weather some instability and bugs. This channel is a continuation of the beta program, where you can provide feedback as the apps evolve. Releases are typically more frequent than for stable, often one or more per month.
Note:
This packages uses a direct download link to the specific beta version!
$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.
- docker-for-windows.1.13.0.9562-beta.nupkg (9d6e8a318f5f) - ## / 56
- InstallDocker.msi (ba7fbe0d0863) - ## / 54
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 (Install) and the Docker for Windows (Install) 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 (Install), 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.