Skip to content

Commit d434e25

Browse files
committed
fix(config): use 'latest' docker-compose versions from github
1 parent 2f60c21 commit d434e25

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

docker/defaults.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ docker:
7979
binary:
8080
options: ''
8181
# yamllint disable-line rule:line-length
82-
source: 'https://github.com/docker/compose/releases/download/1.29.2/docker-compose-Linux-x86_64'
83-
source_hash: 'f3f10cf3dbb8107e9ba2ea5f23c1d2159ff7321d16f0a23051d68d8e2547b323'
82+
source: 'https://github.com/docker/compose/releases/latest/download/docker-compose-Linux-x86_64'
83+
source_hash: null
8484

8585
networks: {}
8686
containers:

docker/map.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
{%- if 'source_hash' in p.binary and p.binary.source_hash %}
6363
{%- do p.binary.update({'name': p.path, 'source_hash': p.binary.source_hash}) %}
6464
{%- else %}
65+
{%- set url = p.binary.source %}
6566
{%- do p.binary.update({'name': p.path, 'source_hash': url ~ '.sha256'}) %}
6667
{%- endif %}
6768

docker/osfamilymap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ MacOS:
9595
name: docker-compose # homebrew
9696
use_upstream: package # Docker Desktop
9797
archive:
98-
source: 'https://github.com/docker/compose/releases/download/v1.29.2/docker-compose-Darwin-x86_64'
99-
source_hash: '21924dff117140a8c4b599c502829a8b75d1ba942e4cf5734a2a27f9d82d16f6'
98+
source: 'https://github.com/docker/compose/releases/latest/download/docker-compose-Darwin-x86_64'
99+
source_hash: null
100100

101101
Windows:
102102
div: '\'

0 commit comments

Comments
 (0)