{"id":16241935,"url":"https://github.com/douglascamata/setup-docker-macos-action","last_synced_at":"2025-03-19T17:30:53.900Z","repository":{"id":54821996,"uuid":"522565081","full_name":"douglascamata/setup-docker-macos-action","owner":"douglascamata","description":"A Github Action to setup Docker on macOS runners.","archived":false,"fork":false,"pushed_at":"2024-03-18T11:00:45.000Z","size":33406,"stargazers_count":23,"open_issues_count":4,"forks_count":8,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-04-17T18:05:50.882Z","etag":null,"topics":["colima","docker","github","github-actions","homebrew","lima-vm","macos"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/douglascamata.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-08T13:40:38.000Z","updated_at":"2024-06-12T16:53:46.512Z","dependencies_parsed_at":"2023-10-03T17:05:43.855Z","dependency_job_id":"cbdf3973-4d2c-41a0-a7ff-f3b3f09dc5c4","html_url":"https://github.com/douglascamata/setup-docker-macos-action","commit_stats":{"total_commits":96,"total_committers":6,"mean_commits":16.0,"dds":0.0625,"last_synced_commit":"3a495e344f56e69dd41c437c2ff77d9b15c6299e"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/douglascamata%2Fsetup-docker-macos-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/douglascamata%2Fsetup-docker-macos-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/douglascamata%2Fsetup-docker-macos-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/douglascamata%2Fsetup-docker-macos-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/douglascamata","download_url":"https://codeload.github.com/douglascamata/setup-docker-macos-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244473660,"owners_count":20458500,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["colima","docker","github","github-actions","homebrew","lima-vm","macos"],"created_at":"2024-10-10T14:09:02.151Z","updated_at":"2025-03-19T17:30:53.894Z","avatar_url":"https://github.com/douglascamata.png","language":null,"readme":"# Setup Docker on macOS action [![.github/workflows/test.yml](https://github.com/douglascamata/setup-docker-macos-action/actions/workflows/test.yml/badge.svg)](https://github.com/douglascamata/setup-docker-macos-action/actions/workflows/test.yml)\n\nThis action installs Docker on a macOS runner through [Colima], [Lima-VM], and [Homebrew].\n\n[Colima]: https://github.com/abiosoft/colima\n[Lima-VM]: https://github.com/lima-vm/lima\n[Homebrew]: https://github.com/Homebrew/brew\n\nI intend this action to be kept as simple as possible:\n\n- No other OS will be supported.\n- Binaries will be downloaded directly from the source when possible.\n\n# Currently supported public runner images\n\n- `macos-13`\n\n# ARM64 processors (M1, M2, M3 series) used on `macos-14` images are unsupported!\n\n\u003e [!WARNING]\n\u003e Apple is adding support for nested virtualization on M3 processors and beyond\n\u003e on macOS 15 (see [Apple Developer docs][apple-developer-docs-nested-virtualization]).\n\u003e This action will be updated to support it as soon as Github starts to update\n\u003e the runners accordingly.\n\n[apple-developer-docs-nested-virtualization]: https://developer.apple.com/documentation/virtualization/vzgenericplatformconfiguration/4360553-isnestedvirtualizationsupported\n\nYes, exactly what you just read. These processors do not support nested\nvirtualization. This means Colima can't start the VM to run Docker.\n\nFor the M1 processor there is no hope. It lacks the hardware support for this.\n\nThe M2 and M3 processors have such hardware support, but no software support\nfrom Apple's Hypervisor framework (so no hopes for QEMU) or Virtualization\nframework (alternative to QEMU).\n\nI'm sorry, but there's nothing I can do about it. All we can do is wait. If I\nmiss the announcement of nested virtualization support, please open an issue.\n\n## Features\n\n- Safety check to ensure the action is running in macOS.\n- As simple and lightweight (downloads binaries directly when possible).\n\n## Inputs\n\n## `inputs.lima` (defaults to `\"latest\"`)\n\nThe version of Lima to install. This can be any valid version from [Lima releases page](https://github.com/lima-vm/lima/releases)\n\n## `inputs.colima` (defaults to `\"latest\"`)\n\nThe version of Colima to install. This can be any valid version from [Colima releases page](https://github.com/abiosoft/colima/releases)\n\n## `inputs.colima-network-address` (defaults to `\"false\"`)\n\nStarts Colima with a reachable network address through passing `--network-address`\nto the `colima start` command. Startup will be slower.\n\n## `inputs.colima-additional-options`\n\nAdds custom parameters to the `colima start` command. Please use this field carefully,\nas a wrong, obsolete, or unsupported set of parameters may break Colima startup.\n\n## Outputs\n\n## `colima-version`\n\nThe version of Colima that was installed.\n\n## `docker-client-version`\n\nThe version of the Docker client that was installed.\n\n## `docker-compose-version`\n\nThe version of Docker Compose that was installed.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglascamata%2Fsetup-docker-macos-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdouglascamata%2Fsetup-docker-macos-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdouglascamata%2Fsetup-docker-macos-action/lists"}