download docker-compose use wget (#4)

* download docker-compose use wget

Signed-off-by: barryz <barryzxb@gmail.com>

* fix
This commit is contained in:
0xfade 2022-06-27 14:13:23 +08:00 committed by GitHub
parent 2df7027da4
commit 731e02abc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,11 +14,11 @@
and docker_compose_version not in docker_compose_current_version.stdout
- name: Install Docker Compose (if configured).
get_url:
url: "{{ docker_compose_url }}"
dest: "{{ docker_compose_path }}"
mode: 0755
environment: "{{ proxy_env }}"
shell: |
wget -q {{ docker_compose_url }} -O {{ docker_compose_path }}
chmod +x {{ docker_compose_path }}
args:
chdir: /tmp
when: >
docker_compose_current_version.stdout is not defined
or docker_compose_version not in docker_compose_current_version.stdout