Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kupietools/2f9f085228d765da579f0f0702bec33c to your computer and use it in GitHub Desktop.
Save kupietools/2f9f085228d765da579f0f0702bec33c to your computer and use it in GitHub Desktop.
List of Direct Download links for Docker Desktop from version 4.0.0 released 2021-08-31 thru 4.22.1 released 2023-08-24, as archived on archive.org
@fernandoaleman
Copy link

The first ID for public download link is 122432 for version 4.24.0 (see here) and the last mentioned here is 117440 for version 4.22.0. I tried all IDs between and found out the following working:

4.22.1 ~ 118664
4.23.0 ~ 120376

Thank you @petr-ujezdsky. This was very helpful. 👍

@Stan370
Copy link

Stan370 commented Sep 21, 2024

Hi, do we have x86 windows here

@jaddison
Copy link

If someone wanted to find other downloads, here's a cheesy python script (requires requests library). It runs slowly, but .... 🤷 Change the 122432 to a more recent docker version number to look for more recently versions.

import requests

for n in range(100000):
    url = f"https://desktop.docker.com/mac/main/amd64/{n+122432}/Docker.dmg"
    response = requests.head(url)
    if response.ok:
        print(response.status_code, url)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment