From b39757d51290aeb27d62230a706daa374575eb81 Mon Sep 17 00:00:00 2001 From: Nic <1386403+microfauna@users.noreply.github.com> Date: Tue, 7 Oct 2025 17:59:50 -0400 Subject: [PATCH] Update Railpack Docs These environment variables mismatch what is reported by the official Railpack docs. I tested them out - and the official names work, but not the ones originally listed. --- .../docs/content/docs/core/applications/build-type.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/docs/content/docs/core/applications/build-type.mdx b/apps/docs/content/docs/core/applications/build-type.mdx index cb6e9ce..08f103c 100644 --- a/apps/docs/content/docs/core/applications/build-type.mdx +++ b/apps/docs/content/docs/core/applications/build-type.mdx @@ -50,11 +50,11 @@ Railpack exposes multiple Build Variables, you can define them in the `Environme | Name | Description | | :-------------------- | :--------------------------------------------------------------------------------------------------------- | -| `BUILD_CMD` | Set the command to run for the build step. This overwrites any commands that come from providers | -| `START_CMD` | Set the command to run when the container starts | -| `PACKAGES` | Install additional Mise packages. In the format `pkg@version`. The latest version is used if not provided. | -| `BUILD_APT_PACKAGES` | Install additional Apt packages during build | -| `DEPLOY_APT_PACKAGES` | Install additional Apt packages in the final image | +| `RAILPACK_BUILD_CMD` | Set the command to run for the build step. This overwrites any commands that come from providers | +| `RAILPACK_START_CMD` | Set the command to run when the container starts | +| `RAILPACK_PACKAGES` | Install additional Mise packages. In the format `pkg@version`. The latest version is used if not provided. | +| `RAILPACK_BUILD_APT_PACKAGES` | Install additional Apt packages during build | +| `RAILPACK_DEPLOY_APT_PACKAGES` | Install additional Apt packages in the final image | you can read more about Railpack [here](https://railpack.com/config/environment-variables).