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
@PhilSchi
Copy link

PhilSchi commented May 4, 2024

Thank you very much for that work. It seems that the Debian Links for 4.22.1 and 4.22.0 shows:
403 Forbidden
Code: AccessDenied
Message: Access Denied

Is there any other Way to Download them?

@cmlohr
Copy link

cmlohr commented May 19, 2024

You are a hero, thank you!

@RashJrEdmund
Copy link

thanks a million 🚀

@kupietools
Copy link
Author

kupietools commented May 24, 2024

Hi all, glad this was a help to you.

@PhilSchi there was a problem with how I had copied some of the Linux links. I've just now gone through re-updated everything from the saved page on archive.org, as well as added the separate Linux links for deb/RPM/Arch (plus added a little self-promotion, as well.)

As noted above, if a download link doesn't work, you might be able to get the file downloaded from archive.org by adding https://web.archive.org/web/20230911135706/ to the beginning of the URL. It currently works for all the handful of downloads I tried.

@FrancescoGrazioso
Copy link

thnak you <3

@petr-ujezdsky
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

@kupietools
Copy link
Author

@petr-ujezdsky, thanks for the update. I see they have a fairly frequent release schedule. At some point I'll update the gist but until then I put a note in the gist to check the comments or the docker releases page for leter versions.

@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