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