0.29.0 Migration Guide¶
Changes¶
- The output of
run:detached
now uses the container name - eg.node-js-app.run.1
- vs the container id. - The ID of
cron
tasks is now base36-encoded instead of base64-encoded. - The
nginx.conf.sigil
is now extracted when source code is extracted for a build and not from the built image. Users can specify alternative paths via thenginx-conf-sigil-path
property of thenginx
plugin. See the nginx documentation for more information on how to configure thenginx.conf.sigil
path for your application.- For deploys via
git:from-image
, thenginx.conf.sigil
file will be extracted from the source image, respecting the value ofnginx-conf-sigil-path
.
- For deploys via
- The
Procfile
is now extracted when source code is extracted for a build and not from the built image. Users can specify alternative paths via theprocfile-path
property of theps
plugin. See the process management documentation for more information on how to configure theProcfile
path for your application.- For deploys via
git:from-image
, theProcfile
file will be extracted from the source image, respecting the value ofprocfile-path
.
- For deploys via
- The existing
pre-restore
hook has been renamed toscheduler-pre-restore
. There is a newpre-restore
hook that is triggered within theps:restore
command prior to restoring any apps. - Nginx init commands are now performed via systemctl on Ubuntu systems when
/usr/bin/systemctl
is available.
Removals¶
- The
DOKKU_WAIT_TO_RETIRE
environment variable has been migrated to achecks
property namedwait-to-retire
and will be ignored if set as an environment variable. - The
domains-setup
trigger has been removed. Initial app domains will now be automatically setup during app creation. - The
URLS
file containing generated urls for an app is no longer generated or referenced. Users should retrieve app urls via the newdomains-urls
plugin trigger. - The common function
get_app_urls
has been removed. Users should retrieve app urls via the newdomains-urls
plugin trigger.