Versions
Change your application's language version whenever necessary, whether from the oldest to the latest.
⚙️ Setting Up Your Application Version
When deploying your application on Discloud, you may need to specify the correct language version for your project. You can do this by setting the VERSION= parameter inside your discloud.config file.
📌 How to Set the Version
To set the desired version, add the following line to your configuration file:
# ...
VERSION=current
# ...Replace "current" with your preferred version from the list below.
If you're unsure which version to choose, using latest will always select the latest stable LTS (Long-Term Support) version, which is recommended for most applications.
📑 Available Versions
🟨 JavaScript (Node.js)
latest
Latest stable version of Node.js (LTS) (recommended).
current
Latest available version of Node.js.
20
Node.js 20.x
18
Node.js 18.x
16.13.2
Node.js 16.13.2
18.x.x
Alternative stable release of Node.js 18
14.18.3
Node.js 14.18.3 (deprecated)
legacy
Older legacy version of Node.js.
suja
Heavier version of latest with pre-installed APT packages. Recommended only as a last resort.
🐍 Python
latest
Latest stable version of Python (LTS) (recommended).
3.11
Python 3.11
3.10
Python 3.10
3.9
Python 3.9
3.9.10
Python 3.9.10
2.7
Python 2.7 (deprecated)
legacy
Older legacy version of Python.
suja
Heavier version of latest with pre-installed APT packages. Recommended only as a last resort.
☕ Java
latest
Latest stable version of OpenJDK.
18.x.x
OpenJDK 18
17.x.x
OpenJDK 17
16.x.x
OpenJDK 16
💎 Ruby
latest
Latest stable version of Ruby (recommended).
3.1.0
Ruby 3.1.0
2.7.5
Ruby 2.7.5
Last updated