github.com/weaveworks/common@v0.0.0-20230728070032-dd9e68f319d5/tools/config_management/setup_bare_docker.yml (about) 1 --- 2 ################################################################################ 3 # Install Docker from Docker's official repository 4 ################################################################################ 5 6 - name: install docker 7 hosts: all 8 gather_facts: false # required in case Python is not available on the host 9 become: true 10 become_user: root 11 12 pre_tasks: 13 - include: library/setup_ansible_dependencies.yml 14 15 roles: 16 - docker-install