Skip to content

Commit 2fd5157

Browse files
authored
Merge pull request #290 from danny-smit/bintray2github
Retrieve binary releases from github instead of bintray
2 parents 4cc1e70 + d434e25 commit 2fd5157

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

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://dl.bintray.com/docker-compose/master/docker-compose-Linux-x86_64'
83-
source_hash: '3c96b57ea8e0027aee7e1a3023f7599bcecae54e77bcfd5f4e65a59672637e54'
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://dl.bintray.com/docker-compose/master/docker-compose-Darwin-x86_64'
99-
source_hash: 'c5e326611efa45cbaf5b338bf352cbf27e9eb7dff0619f77639cae1158f6571f'
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)