within the installation script we attempt to parse the versions from the CDN using a mixture of commands, however, a dependency is jq package which can easily handle this parsing alot simpler and could ensure we get a proper json response.
This may mean we need to move the the logging of the versions after the dependency installation. Also a fallback of "latest" doesnt seem correct as we dont tag any image with "latest" anymore from GHCR or Docker
https://github.com/coollabsio/coolify/blob/092bd916ff2a143d9f657bae1764598313164c8a/scripts/install.sh#L117-L119
within the installation script we attempt to parse the versions from the CDN using a mixture of commands, however, a dependency is
jq
package which can easily handle this parsing alot simpler and could ensure we get a proper json response.This may mean we need to move the the logging of the versions after the dependency installation. Also a fallback of "latest" doesnt seem correct as we dont tag any image with "latest" anymore from GHCR or Docker