Renames the existing `## Internal properties` umbrella section to `## Properties` across all plugin docs and adds a new `### Settable properties` subsection enumerating every property accepted by each plugin's `:set` command. Each row lists scope, default, the actual `:report` flag shapes that surface the value, and a one-line description. The buildpacks plugin is included even though it uses `:set-property`, with a note in the subsection clarifying the legacy command name. Property lists, scopes, and report flags were verified against plugin source and the live dokku binary.
5.2 KiB
Nixpacks
Important
New as of 0.32.0
The nixpacks builder builds apps via Nixpacks, a buildpack alternative.
Usage
Requirements
The nixpacks cli tool is not included by default with Dokku or as a dependency. It must also be installed as shown on this page.
Builds will proceed with the nixpacks cli for the app from then on.
Detection
This builder will be auto-detected in the following case:
- A
nixpacks.tomlexists in the root of the app repository.
The builder may also be selected via the builder:set command
dokku builder:set node-js-app selected nixpacks
Supported languages
See the upstream nixpacks documentation for further information on what languages and frameworks are supported.
Build-time configuration variables
For security reasons - and as per Docker recommendations - nixpacks-based deploys have variables available only during runtime.
For users that require customization in the build phase, you may use build arguments via the docker-options plugin. All environment variables set by the config plugin are automatically exported within the nixpacks build environment, and thus --env only requires setting a key without a value.
dokku docker-options:add node-js-app build '--env NODE_ENV'
Alternatively, a full value may be provided in the form of --env KEY=VALUE:
dokku docker-options:add node-js-app build '--env NODE_ENV=production'
Changing the nixpacks.toml location
The nixpacks.toml is expected to be found in a specific directory, depending on the deploy approach:
- The
WORKDIRof the Docker image for deploys resulting fromgit:from-imageandgit:load-imagecommands. - The root of the source code tree for all other deploys (git push,
git:from-archive,git:sync).
Sometimes it may be desirable to set a different path for a given app, e.g. when deploying from a monorepo. This can be done via the nixpackstoml-path property:
dokku builder-nixpacks:set node-js-app nixpackstoml-path .dokku/nixpacks.toml
The value is the path to the desired file relative to the base search directory, and will never be treated as absolute paths in any context. If that file does not exist within the repository, the build will fail.
The default value may be set by passing an empty value for the option:
dokku builder-nixpacks:set node-js-app nixpackstoml-path
The nixpackstoml-path property can also be set globally. The global default is nixpacks.toml, and the global value is used when no app-specific value is set.
dokku builder-nixpacks:set --global nixpackstoml-path nixpacks2.toml
The default value may be set by passing an empty value for the option.
dokku builder-nixpacks:set --global nixpackstoml-path
Disabling cache
Disable cache using the [docker-options] plugin:
dokku docker-options:add node-js-app build "--no-cache"
Displaying builder-nixpacks reports for an app
You can get a report about the app's storage status using the builder-nixpacks:report command:
dokku builder-nixpacks:report
=====> node-js-app builder-nixpacks information
Builder-nixpacks computed nixpackstoml path: nixpacks2.toml
Builder-nixpacks global nixpackstoml path:
Builder-nixpacks nixpackstoml path: nixpacks2.toml
=====> python-sample builder-nixpacks information
Builder-nixpacks computed nixpackstoml path: nixpacks.toml
Builder-nixpacks global nixpackstoml path:
Builder-nixpacks nixpackstoml path:
=====> ruby-sample builder-nixpacks information
Builder-nixpacks computed nixpackstoml path: nixpacks.toml
Builder-nixpacks global nixpackstoml path:
Builder-nixpacks nixpackstoml path:
The nixpackstoml-path and global-nixpackstoml-path keys hold the raw per-app and global value respectively, and are empty when nothing has been set. The computed-nixpackstoml-path key holds the effective value used at build time, falling back to the global value (where one has been set) and then to the built-in default of nixpacks.toml.
You can run the command for a specific app also.
dokku builder-nixpacks:report node-js-app
=====> node-js-app builder-nixpacks information
Builder-nixpacks computed nixpackstoml path: nixpacks2.toml
Builder-nixpacks global nixpackstoml path:
Builder-nixpacks nixpackstoml path: nixpacks2.toml
You can pass flags which will output only the value of the specific information you want. For example:
dokku builder-nixpacks:report node-js-app --builder-nixpacks-nixpackstoml-path
nixpacks2.toml
Properties
Settable properties
| Property | Scope | Default | Report flags | Description |
|---|---|---|---|---|
nixpackstoml-path |
app + global | nixpacks.toml |
--builder-nixpacks-nixpackstoml-path, --builder-nixpacks-global-nixpackstoml-path, --builder-nixpacks-computed-nixpackstoml-path |
Path within the app to the nixpacks.toml manifest used by the nixpacks builder |