Build and Start Commands

Railway uses Nixpacks to build and deploy your code with zero configuration. Build and Start commands are automatically detected when an image is built and deployed to a service in Railway.

If necessary, build and start commands can be manually configured.

How it Works

Overrides are exposed in the service configuration to enable customizing the Build and Start commands. When an override is configured, Railway uses the commands specified to build and start the service.

Build Command

The command to build the service, for example yarn run build. Override the detected build command by setting a value in your service settings.

Screenshot of Railway Build Command

Start Command

Railway automatically configures the start command based on the code being deployed.

If your code uses a Dockerfile, the start command defaults to the ENTRYPOINT and/or CMD defined in the Dockerfile.

Override the detected start command by setting a value in your service settings.

Screenshot of custom start command configuration

Support

For more information on how to configure builds, check out the Builds guide section.

For more information on how to configure a service's deployment lifecycle, like the Start command, check out the Deployments guide section.


Edit this file on GitHub