You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
305 B
11 lines
305 B
5 years ago
|
---
|
||
|
|
||
|
- name: Install docker-compose
|
||
|
get_url:
|
||
|
url: https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-Linux-x86_64
|
||
|
dest: /usr/local/bin/docker-compose
|
||
|
mode: 0755
|
||
|
environment:
|
||
|
- https_proxy: "{{ system_proxy | default('') }}"
|
||
|
tags: docker
|