{"id":22218257,"url":"https://github.com/antmelekhin/ansible-role-docker","last_synced_at":"2026-04-10T12:01:54.525Z","repository":{"id":189562600,"uuid":"680164702","full_name":"antmelekhin/ansible-role-docker","owner":"antmelekhin","description":"An Ansible role to install and configure Docker Engine.","archived":false,"fork":false,"pushed_at":"2025-11-02T21:02:33.000Z","size":92,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-02T23:09:37.776Z","etag":null,"topics":["ansible","ansible-role","debian","docker","docker-engine","fedora","rhel","ubuntu"],"latest_commit_sha":null,"homepage":"https://galaxy.ansible.com/ui/standalone/roles/antmelekhin/docker/","language":"Jinja","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/antmelekhin.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-08-18T13:51:24.000Z","updated_at":"2025-10-22T15:03:19.000Z","dependencies_parsed_at":null,"dependency_job_id":"5143759d-2778-41a1-8126-aa6881106c02","html_url":"https://github.com/antmelekhin/ansible-role-docker","commit_stats":null,"previous_names":["antmelekhin/ansible-role-docker"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/antmelekhin/ansible-role-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antmelekhin%2Fansible-role-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antmelekhin%2Fansible-role-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antmelekhin%2Fansible-role-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antmelekhin%2Fansible-role-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/antmelekhin","download_url":"https://codeload.github.com/antmelekhin/ansible-role-docker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/antmelekhin%2Fansible-role-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31641492,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["ansible","ansible-role","debian","docker","docker-engine","fedora","rhel","ubuntu"],"created_at":"2024-12-02T22:19:56.092Z","updated_at":"2026-04-10T12:01:54.490Z","avatar_url":"https://github.com/antmelekhin.png","language":"Jinja","funding_links":[],"categories":[],"sub_categories":[],"readme":"Docker\n======\n\nAn Ansible role to install [Docker Engine](https://docs.docker.com/engine/) from the Docker repository and configure it.\n\nRequirements\n------------\n\n- Supported version of Ansible: 2.12 and higher. Systems with Python versions below than 3.7 are not compatible with ansible-core 2.17 (see [ansible/ansible#83357](https://github.com/ansible/ansible/issues/83357#issuecomment-2150254754)).\n- Supported platforms:\n  - Debian\n    - 10\n    - 11\n    - 12\n  - Fedora\n    - 39\n    - 40\n  - RHEL\n    - 7\n    - 8\n    - 9\n  - Ubuntu\n    - 18.04\n    - 20.04\n    - 22.04\n\nRole Variables\n--------------\n\nAll variables that can be overridden are stored in the [defaults/main.yml](https://github.com/antmelekhin/ansible-role-docker/blob/main/defaults/main.yml) file.\nPlease refer to the [meta/argument_specs.yml](https://github.com/antmelekhin/ansible-role-docker/blob/main/meta/argument_specs.yml) file for a description of the available variables.\nSimilarly, descriptions and defaults for preset variables can be found in the [vars/main.yml](https://github.com/antmelekhin/ansible-role-docker/blob/main/vars/main.yml) file.\n\nDependencies\n------------\n\nNone.\n\nExample Playbook\n----------------\n\nInstall Docker Engine:\n\n```yaml\n---\n- name: 'Install Docker Engine'\n  hosts: all\n\n  roles:\n    - role: antmelekhin.docker\n```\n\nInstall Docker Engine and configure a DNS server for all Docker containers:\n\n```yaml\n---\n- name: 'Install Docker Engine'\n  hosts: all\n\n  roles:\n    - role: antmelekhin.docker\n      docker_daemon_options:\n        dns:\n          - '8.8.8.8'\n        dns-search:\n          - 'example.com'\n```\n\nInstall Docker Engine v23.0.6:\n\n```yaml\n---\n- name: 'Install Docker Engine v23.0.6'\n  hosts: all\n\n  roles:\n    - role: antmelekhin.docker\n      docker_version: '5:23.0.6-1~ubuntu.22.04~jammy'\n      when: ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('22.04', '=')\n\n    - role: antmelekhin.docker\n      docker_version: '23.0.6'\n      when: ansible_os_family == 'RedHat'\n```\n\nLicense\n-------\n\nMIT\n\nAuthor Information\n------------------\n\nMelekhin Anton.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantmelekhin%2Fansible-role-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantmelekhin%2Fansible-role-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantmelekhin%2Fansible-role-docker/lists"}