Skip to content

Instantly share code, notes, and snippets.

@giper45
Created November 18, 2021 13:14
Show Gist options
  • Save giper45/117d792b2e61e5b8dcfabc653fdfd716 to your computer and use it in GitHub Desktop.
Save giper45/117d792b2e61e5b8dcfabc653fdfd716 to your computer and use it in GitHub Desktop.
Ansible Docker-Compose install
---
- name: "Install Docker Compose"
gather_facts: true
become: true
hosts: all
tasks:
- name: "Download dockker-compose"
get_url:
url: https://github.com/docker/compose/releases/download/1.27.4/docker-compose-{{ ansible_system }}-{{ ansible_machine }}
dest: /usr/local/bin/docker-compose
mode: '0755'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment