Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
324,578
Downloads of v 2.5.0.1:
23,966
Last Update:
17 Nov 2020
Package Maintainer(s):
Software Author(s):
- Docker Inc.
Tags:
docker-for-windows docker-desktop docker 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 Desktop
This is not the latest version of Docker Desktop available.
- 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:
324,578
Downloads of v 2.5.0.1:
23,966
Maintainer(s):
Software Author(s):
- Docker Inc.
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Docker Desktop 2.5.0.1
This is not the latest version of Docker Desktop available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Dependencies require reboot.
To install Docker Desktop, run the following command from the command line or from PowerShell:
To upgrade Docker Desktop, run the following command from the command line or from PowerShell:
To uninstall Docker Desktop, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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://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
choco download docker-desktop --internalize --version=2.5.0.1 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade docker-desktop -y --source="'STEP 3 URL'" [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-desktop -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure docker-desktop installed
win_chocolatey:
name: docker-desktop
state: present
version: 2.5.0.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'docker-desktop' do
action :install
version '2.5.0.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: docker-desktop,
Version: 2.5.0.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller docker-desktop
{
Name = 'docker-desktop'
Ensure = 'Present'
Version = '2.5.0.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'docker-desktop':
provider => 'chocolatey',
ensure => '2.5.0.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install docker-desktop version="2.5.0.1" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. 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 by moderator gep13 on 24 Nov 2020.
Docker Desktop is an easy-to-install application for your Mac or Windows environment that enables you to start coding and containerizing in minutes. Docker Desktop includes everything you need to build, test and ship containerized applications right from your machine.
Benefits include:
- 1-click installation and setup of a complete Docker development environment for Mac or Windows
- Integrated tools including the Docker command line, Docker Compose and kubectl command line
- Ability to start/stop with a single click
Stable channel
Stable is the best channel to use if you want a reliable platform to work with. Stable releases track the Docker platform stable releases.
$ErrorActionPreference = 'Stop';
$packageName= 'docker-desktop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://desktop.docker.com/win/stable/49550/Docker%20Desktop%20Installer.exe'
$checksum = '6eb4a572552607ee2d4146202eb7eb3323fe06f7e64b56420bf58d63cda5da40'
$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = $url
softwareName = 'docker*'
checksum = $checksum
checksumType = 'sha256'
silentArgs = "install --quiet"
validExitCodes= @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs
$ErrorActionPreference = 'Stop';
$packageName = 'docker-desktop'
$softwareName = 'docker*'
$installerType = 'EXE'
$silentArgs = 'uninstall --quiet'
$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 = ''
}
# remove parameter
$file = $file -replace ' uninstall$', '';
write-output "uninstalling from $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 Desktop Installer.exe (6eb4a5725526) - ## / 65
- docker-desktop.2.5.0.1.nupkg (9548dab61d1a) - ## / 64
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Docker Desktop 3.1.0 | 7106 | Monday, January 18, 2021 | Approved |
Docker Desktop 3.1.0-edge | 2 | Monday, January 18, 2021 | Approved |
Docker Desktop 3.0.4 | 10346 | Thursday, January 7, 2021 | Approved |
Docker Desktop 3.0.4-edge | 16 | Thursday, January 7, 2021 | Approved |
Docker Desktop 3.0.0 | 16124 | Thursday, December 17, 2020 | Approved |
Docker Desktop 3.0.0-edge | 16 | Thursday, December 17, 2020 | Approved |
Docker Desktop 2.5.1.0-edge | 1165 | Wednesday, November 18, 2020 | Exempted |
Docker Desktop 2.5.0.1 | 23966 | Tuesday, November 17, 2020 | Approved |
Docker Desktop 2.4.2.0-edge | 1197 | Monday, October 19, 2020 | Approved |
Docker Desktop 2.4.1.0-edge | 461 | Thursday, October 1, 2020 | Approved |
Docker Desktop 2.4.0.0 | 23174 | Wednesday, September 30, 2020 | Approved |
Docker Desktop 2.3.7.0-edge | 464 | Friday, September 18, 2020 | Approved |
Docker Desktop 2.3.6.2-edge | 286 | Thursday, September 10, 2020 | Approved |
Docker Desktop 2.3.6.1-edge | 104 | Tuesday, September 8, 2020 | Approved |
Docker Desktop 2.3.6.0-edge | 277 | Tuesday, September 1, 2020 | Approved |
Docker Desktop 2.3.5.1-edge | 295 | Tuesday, August 25, 2020 | Approved |
Docker Desktop 2.3.5.0-edge | 206 | Friday, August 21, 2020 | Approved |
Docker Desktop 2.3.4.0-edge | 662 | Wednesday, July 29, 2020 | Approved |
Docker Desktop 2.3.3.2-edge | 225 | Wednesday, July 22, 2020 | Approved |
Docker Desktop 2.3.3.1-edge | 303 | Saturday, July 11, 2020 | Approved |
Docker Desktop 2.3.3.0-edge | 48 | Friday, July 10, 2020 | Approved |
Docker Desktop 2.3.2.1-edge | 297 | Tuesday, June 30, 2020 | Approved |
Docker Desktop 2.3.2.0-edge | 135 | Saturday, June 27, 2020 | Approved |
Docker Desktop 2.3.1.0-edge | 1209 | Wednesday, May 20, 2020 | Approved |
Docker Desktop 2.3.0.5 | 9353 | Tuesday, September 15, 2020 | Approved |
Docker Desktop 2.3.0.4 | 18902 | Monday, July 27, 2020 | Approved |
Docker Desktop 2.3.0.3 | 21165 | Wednesday, May 27, 2020 | Approved |
Docker Desktop 2.3.0.2 | 9298 | Monday, May 11, 2020 | Approved |
Docker Desktop 2.3.0.1-edge | 379 | Tuesday, April 28, 2020 | Approved |
Docker Desktop 2.3.0.0-edge | 252 | Monday, April 20, 2020 | Approved |
Docker Desktop 2.2.3.0-edge | 447 | Thursday, April 2, 2020 | Approved |
Docker Desktop 2.2.2.0-edge | 665 | Monday, March 2, 2020 | Approved |
Docker Desktop 2.2.1.0-edge | 67 | Wednesday, February 12, 2020 | Approved |
Docker Desktop 2.2.0.5 | 15785 | Thursday, April 2, 2020 | Approved |
Docker Desktop 2.2.0.4 | 9753 | Friday, March 13, 2020 | Approved |
Docker Desktop 2.2.0.3 | 14366 | Tuesday, February 11, 2020 | Approved |
Docker Desktop 2.1.7.0-edge | 829 | Wednesday, December 11, 2019 | Approved |
Docker Desktop 2.1.6.1-edge | 455 | Thursday, November 21, 2019 | Approved |
Docker Desktop 2.1.6.0-edge | 170 | Monday, November 18, 2019 | Approved |
Docker Desktop 2.1.5.0-edge | 362 | Monday, November 4, 2019 | Approved |
Docker Desktop 2.1.4.0-edge | 413 | Tuesday, October 15, 2019 | Approved |
Docker Desktop 2.1.3.0-edge | 577 | Monday, September 16, 2019 | Approved |
Docker Desktop 2.1.2.0-edge | 277 | Monday, September 9, 2019 | Approved |
Docker Desktop 2.1.1.0-edge | 734 | Monday, August 12, 2019 | Approved |
Docker Desktop 2.1.0.5 | 21636 | Monday, November 18, 2019 | Approved |
Docker Desktop 2.1.0.4 | 11025 | Monday, October 21, 2019 | Approved |
Docker Desktop 2.1.0.3 | 13580 | Monday, September 16, 2019 | Approved |
Docker Desktop 2.1.0.2 | 5945 | Wednesday, September 4, 2019 | Approved |
Docker Desktop 2.1.0.1 | 11522 | Thursday, August 8, 2019 | Approved |
Docker Desktop 2.1.0.0 | 4089 | Wednesday, July 31, 2019 | Approved |
Docker Desktop 2.1.0.0-edge | 151 | Tuesday, July 30, 2019 | Approved |
Docker Desktop 2.0.5.0-edge | 770 | Wednesday, June 12, 2019 | Approved |
Docker Desktop 2.0.4.1-edge | 597 | Thursday, May 9, 2019 | Approved |
Docker Desktop 2.0.4.0-edge | 257 | Tuesday, April 30, 2019 | Approved |
Docker Desktop 2.0.3.0-edge | 914 | Tuesday, March 5, 2019 | Approved |
Docker Desktop 2.0.2.1-edge | 313 | Thursday, February 14, 2019 | Exempted |
Docker Desktop 2.0.2.0-edge | 224 | Wednesday, February 6, 2019 | Exempted |
Docker Desktop 2.0.1.0-edge | 356 | Monday, January 14, 2019 | Exempted |
Docker Desktop 2.0.0.3 | 33417 | Thursday, February 14, 2019 | Approved |
Docker Desktop 2.0.0.2 | 8406 | Tuesday, January 15, 2019 | Approved |
Docker Desktop 2.0.0.0 | 8802 | Wednesday, November 21, 2018 | Approved |
-
- dotnetfx (≥ 4.5.0)
Ground Rules:
- This discussion is only about Docker Desktop and the Docker Desktop 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 Desktop, 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.