Skip to content

Commit

Permalink
Fix docker compose download
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Jan 11, 2024
1 parent 06e20a7 commit 1b0051d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ docker_version: "latest"
docker_compatible_versions: []
docker_install_criu: true
docker_install_pip: true
docker_compose_version: "2.23.2"
docker_compose_version: "v2.23.2"
docker_config_values: {}
# Nvidia docker options to add in the docker.json file
docker_nvidia_support: false
Expand Down
2 changes: 1 addition & 1 deletion tasks/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@

- name: Install docker compose
get_url:
url: "https://github.com/docker/compose/releases/download/v{{ docker_compose_version }}/docker-compose-Linux-x86_64"
url: "https://github.com/docker/compose/releases/download/{{ docker_compose_version }}/docker-compose-Linux-x86_64"
dest: /usr/local/bin/docker-compose
mode: '0755'
when: docker_compose_version != ""

0 comments on commit 1b0051d

Please sign in to comment.