Herokuish Buildpack Deployment
New
Subcommands introduced in 0.15.0
buildpacks:add [--index 1] <app> <buildpack> # Add new app buildpack while inserting into list of buildpacks if necessary
buildpacks:clear <app> # Clear all buildpacks set on the app
buildpacks:list <app> # List all buildpacks for an app
buildpacks:remove <app> <buildpack> # Remove a buildpack set on the app
buildpacks:report [<app>] [<flag>] # Displays a buildpack report for one or more apps
buildpacks:set [--index 1] <app> <buildpack> # Set new app buildpack at a given position defaulting to the first buildpack if no index is specified
buildpacks:set-property [--global|<app>] <key> <value> # Set or clear a buildpacks property for an app
Warning
If using the buildpacks
plugin, be sure to unset any BUILDPACK_URL
and remove any such entries from a committed .env
file. A specified BUILDPACK_URL
will always override a .buildpacks
file or the buildpacks plugin.
Dokku normally defaults to using Heroku buildpacks for deployment, though this may be overridden by committing a valid Dockerfile
to the root of your repository and pushing the repository to your Dokku installation. To avoid this automatic Dockerfile
deployment detection, you may do one of the following:
- Set a
BUILDPACK_URL
environment variable - This can be done via
dokku config:set
or via a committed.env
file in the root of the repository. See the environment variable documentation for more details. - Create a
.buildpacks
file in the root of your repository. - This can be via a committed
.buildpacks
file or managed via thebuildpacks
plugin commands.
This page will cover usage of the buildpacks
plugin.
Usage
Detection
This builder will be auto-detected in either the following cases:
- The
BUILDPACK_URL
app environment variable is set. - This can be done via
dokku config:set
or via a committed.env
file in the root of the repository. See the environment variable documentation for more details. - A
.buildpacks
file exists in the root of the app repository. - This can be via a committed
.buildpacks
file or managed via thebuildpacks
plugin commands.
The builder can also be specified via the builder:set
command:
Info
Dokku will only select the dockerfile
builder if both the herokuish
and pack
builders are not detected and a Dockerfile exists. See the dockerfile builder documentation for more information on how that builder functions.
Listing Buildpacks in Use
The buildpacks:list
command can be used to show buildpacks that have been set for an app. This will omit any auto-detected buildpacks.
Adding custom buildpacks
Info
Please check the documentation for your particular buildpack as you may need to include configuration files (such as a Procfile) in your project root.
To add a custom buildpack, use the buildpacks:add
command:
When no buildpacks are currently specified, the specified buildpack will be the only one executed for detection and compilation.
Multiple buildpacks may be specified by using the buildpacks:add
command multiple times.
dokku buildpacks:add node-js-app https://github.com/heroku/heroku-buildpack-ruby.git
dokku buildpacks:add node-js-app https://github.com/heroku/heroku-buildpack-nodejs.git
Buildpacks are executed in order, may be inserted at a specified index via the --index
flag. This flag is specified starting at a 1-index value.
# will add the golang buildpack at the second position, bumping all proceeding ones by 1 position
dokku buildpacks:add --index 2 node-js-app https://github.com/heroku/heroku-buildpack-golang.git
Overwriting a buildpack position
In some cases, it may be necessary to swap out a given buildpack. Rather than needing to re-specify each buildpack, the buildpacks:set
command can be used to overwrite a buildpack at a given position.
By default, this will overwrite the first buildpack specified. To specify an index, the --index
flag may be used. This flag is specified starting at a 1-index value, and defaults to 1
.
# the following are equivalent commands
dokku buildpacks:set node-js-app https://github.com/heroku/heroku-buildpack-ruby.git
dokku buildpacks:set --index 1 node-js-app https://github.com/heroku/heroku-buildpack-ruby.git
If the index specified is larger than the number of buildpacks currently configured, the buildpack will be appended to the end of the list.
Removing a buildpack
Info
At least one of a buildpack or index must be specified
A single buildpack can be removed by name via the buildpacks:remove
command.
Buildpacks can also be removed by index via the --index
flag. This flag is specified starting at a 1-index value.
Clearing all buildpacks
Info
This does not affect automatically detected buildpacks, nor does it impact any specified BUILDPACK_URL
environment variable.
The buildpacks:clear
command can be used to clear all configured buildpacks for a specified app.
Customizing the Buildpack stack builder
New
Introduced in 0.23.0
The default stack builder in use by Herokuish buildpacks in Dokku is based on gliderlabs/herokuish:latest
. Typically, this is installed via an OS package which pulls the requisite Docker image. Users may desire to switch the stack builder to a custom version, either to update the operating system or to customize packages included with the stack builder. This can be performed via the buildpacks:set-property
command.
The specified stack builder can also be unset by omitting the name of the stack builder when calling buildpacks:set-property
.
A change in the stack builder value will execute the post-stack-set
trigger.
Finally, stack builders can be set or unset globally as a fallback. This will take precedence over a globally set DOKKU_IMAGE
environment variable (gliderlabs/herokuish:latest-20
by default).
# set globally
dokku buildpacks:set-property --global stack gliderlabs/herokuish:latest
# unset globally
dokku buildpacks:set-property --global stack
Displaying buildpack reports for an app
You can get a report about the app's buildpacks status using the buildpacks:report
command:
=====> node-js-app buildpacks information
Buildpacks computed stack: gliderlabs/herokuish:v0.5.23-20
Buildpacks global stack: gliderlabs/herokuish:latest-20
Buildpacks list: https://github.com/heroku/heroku-buildpack-nodejs.git
Buildpacks stack: gliderlabs/herokuish:v0.5.23-20
=====> python-sample buildpacks information
Buildpacks computed stack: gliderlabs/herokuish:latest-20
Buildpacks global stack: gliderlabs/herokuish:latest-20
Buildpacks list: https://github.com/heroku/heroku-buildpack-nodejs.git,https://github.com/heroku/heroku-buildpack-python.git
Buildpacks stack:
=====> ruby-sample buildpacks information
Buildpacks computed stack: gliderlabs/herokuish:latest-20
Buildpacks global stack: gliderlabs/herokuish:latest-20
Buildpacks list:
Buildpacks stack:
You can run the command for a specific app also.
You can pass flags which will output only the value of the specific information you want. For example:
Errata
Switching from Dockerfile deployments
If an application was previously deployed via Dockerfile, the following commands should be run before a buildpack deploy will succeed:
Using a specific buildpack version
Info
Always remember to pin your buildpack versions when using the multi-buildpacks method, or you may find deploys changing your deployed environment.
By default, Dokku uses the gliderlabs/herokuish project, which pins all of it's vendored buildpacks. There may be occasions where the pinned version results in a broken deploy, or does not have a particular feature that is required to build your project. To use a more recent version of a given buildpack, the buildpack may be specified without a Git commit SHA like so:
# using the latest nodejs buildpack
dokku buildpacks:set node-js-app https://github.com/heroku/heroku-buildpack-nodejs
This will use the latest commit on the master
branch of the specified buildpack. To pin to a newer version of a buildpack, a sha may also be specified by using the form REPOSITORY_URL#COMMIT_SHA
, where COMMIT_SHA
is any tree-ish git object - usually a git tag.
# using v87 of the nodejs buildpack
dokku buildpacks:set node-js-app https://github.com/heroku/heroku-buildpack-nodejs#v87
Specifying commands via Procfile
While many buildpacks have a default command that is run when a detected repository is pushed, it is possible to override this command via a Procfile. A Procfile can also be used to specify multiple commands, each of which is subject to process scaling. See the process scaling documentation for more details around scaling individual processes.
A Procfile is a file named Procfile
. It should be named Procfile
exactly, and not anything else. For example, Procfile.txt
is not valid. The file should be a simple text file.
The file must be placed in the root directory of your application. It will not function if placed in a subdirectory.
If the file exists, it should not be empty, as doing so may result in a failed deploy.
The syntax for declaring a Procfile
is as follows. Note that the format is one process type per line, with no duplicate process types.
If, for example, you have multiple queue workers and wish to scale them separately, the following would be a valid way to work around the requirement of not duplicating process types:
worker: env QUEUE=* bundle exec rake resque:work
importantworker: env QUEUE=important bundle exec rake resque:work
The web
process type holds some significance in that it is the only process type that is automatically scaled to 1
on the initial application deploy. See the process scaling documentation for more details around scaling individual processes.
curl
build timeouts
Certain buildpacks may time out in retrieving dependencies via curl
. This can happen when your network connection is poor or if there is significant network congestion. You may see a message similar to gzip: stdin: unexpected end of file
after a curl
command.
If you see output similar this when deploying , you may need to override the curl
timeouts to increase the length of time allotted to those tasks. You can do so via the config
plugin:
Clearing buildpack cache
See the repository management documentation for more information on how to clear buildpack build cache for an application.