mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-02 09:40:34 +00:00
17 lines
466 B
YAML
17 lines
466 B
YAML
---
|
|
################################################################################
|
|
# Install Docker from Docker's official repository
|
|
################################################################################
|
|
|
|
- name: install docker
|
|
hosts: all
|
|
gather_facts: false # required in case Python is not available on the host
|
|
become: true
|
|
become_user: root
|
|
|
|
pre_tasks:
|
|
- include: library/setup_ansible_dependencies.yml
|
|
|
|
roles:
|
|
- docker-install
|