blob: 826b8e308c5004a9ec849821adf8ecd3bae74205 [file] [log] [blame]
Sergio Slobodriancd43feb2017-07-25 16:26:38 -04001- name: Docker compose executable is downloaded
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04002 get_url:
3 url: https://github.com/docker/compose/releases/download/1.9.0/docker-compose-Linux-x86_64
4 dest: /home/vinstall
5 mode: 0644
6 when: target == "installer"
Sergio Slobodriancd43feb2017-07-25 16:26:38 -04007- name: Docker Compose executable is installed
Sergio Slobodrianee4b2bc2017-06-05 10:08:59 -04008 copy:
9 src: /home/vinstall/docker-compose-Linux-x86_64
10 dest: /usr/local/bin/docker-compose
11 mode: 0755
12 when: target == "cluster"