This guide outlines the release process for Coolify, intended for developers and those interested in understanding how releases are managed and deployed.
-
Development on
next
or Feature Branches- Improvements, fixes, and new features are developed on the
next
branch or separate feature branches.
- Improvements, fixes, and new features are developed on the
-
Merging to
main
- Once ready, changes are merged from the
next
branch into themain
branch.
- Once ready, changes are merged from the
-
Building the Release
- After merging to
main
, GitHub Actions automatically builds release images for all architectures and pushes them to the GitHub Container Registry with the version tag and thelatest
tag.
- After merging to
-
Creating a GitHub Release
- A new GitHub release is manually created with details of the changes made in the version.
-
Updating the CDN
- To make a new version publicly available, the version information on the CDN needs to be updated: https://cdn.coollabs.io/coolify/versions.json
Note
The CDN update may not occur immediately after the GitHub release. It can take hours or even days due to additional testing, stability checks, or potential hotfixes. The update becomes available only after the CDN is updated.
Stable (coming soon)
- Stable
- The production version suitable for stable, production environments (generally recommended).
- Update Frequency: Every 2 to 4 weeks, with more frequent possible hotfixes.
- Release Size: Larger but less frequent releases. Multiple nightly versions are consolidated into a single stable release.
- Versioning Scheme: Follows semantic versioning (e.g.,
v4.0.0
). - Installation Command:
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
Nightly
- Nightly
- The latest development version, suitable for testing the latest changes and experimenting with new features.
- Update Frequency: Daily or bi-weekly updates.
- Release Size: Smaller, more frequent releases.
- Versioning Scheme: TO BE DETERMINED
- Installation Command:
curl -fsSL https://cdn.coollabs.io/coolify-nightly/install.sh | bash -s next
Beta
- Beta
- Test releases for the upcoming stable version.
- Purpose: Allows users to test and provide feedback on new features and changes before they become stable.
- Update Frequency: Available if we think beta testing is necessary.
- Release Size: Same size as stable release as it will become the next stabe release after some time.
- Versioning Scheme: Follows semantic versioning (e.g.,
4.1.0-beta.1
). - Installation Command:
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
Warning
Do not use nightly/beta builds in production as there is no guarantee of stability.
When a new version is released and a new GitHub release is created, it doesn't immediately become available for your instance. Here's how version availability works for different instance types.
- Update Frequency: More frequent updates, especially on the nightly release channel.
- Update Availability: New versions are available once the CDN has been updated.
- Update Methods:
- Manual Update in Instance Settings:
- Go to
Settings > Update Check Frequency
and click theCheck Manually
button. - If an update is available, an upgrade button will appear on the sidebar.
- Go to
- Automatic Update:
- If enabled, the instance will update automatically at the time set in the settings.
- Re-run Installation Script:
- Run the installation script again to upgrade to the latest version available on the CDN:
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash
- Manual Update in Instance Settings:
Important
If a new release is available on GitHub but your instance hasn't updated yet or no upgrade button is shown in the UI, the CDN might not have been updated yet. This intentional delay ensures stability and allows for hotfixes before official release.
- Update Frequency: Less frequent as it's a managed service.
- Update Availability: New versions are available once Andras has updated the cloud version manually.
- Update Method:
- Updates are managed by Andras, who ensures each cloud version is thoroughly tested and stable before releasing it.
Important
The cloud version of Coolify may be several versions behind the latest GitHub releases even if the CDN is updated. This is intentional to ensure stability and reliability for cloud users and Andras will manully update the cloud version when the update is ready.
Caution
Updating to unreleased versions is not recommended and may cause issues. Use at your own risk!
To update your Coolify instance to a specific (unreleased) version, use the following command:
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash -s <version>
Replace <version>
with the version you want to update to (for example 4.0.0-beta.332
).