Skip to content

Commit

Permalink
fix(cmd/install_bin): Get docker-compose version from Github
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Jun 21, 2023
1 parent afb960e commit e26eeb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/install_bin/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ var Tools = []Tool{
},
{
Name: "docker-compose",
GetVersionFunc: func() string { return "v2.7.0" },
GetVersionFunc: func() string { return github_utils.GetLatestRelease("docker", "compose") },
UrlTemplate: "https://github.com/docker/compose/releases/download/{{.Version}}/docker-compose-{{.Os}}-{{.ArchDocker}}",
},
{
Expand Down

0 comments on commit e26eeb7

Please sign in to comment.