mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
14 lines
478 B
Markdown
14 lines
478 B
Markdown
|
|
# 0.27.0 Migration Guide
|
||
|
|
|
||
|
|
## Changes
|
||
|
|
|
||
|
|
- Renaming an application will now only rename domains that are associated with global domains. As an example:
|
||
|
|
```shell
|
||
|
|
dokku domains:set-global dokku.me
|
||
|
|
dokku apps:create node-js-app
|
||
|
|
dokku domains:set node-js-app node-js-app.dokku.me node-js-app.dokku.com
|
||
|
|
dokku apps:rename node-js-app other-name
|
||
|
|
dokku domains:report node-js-app --domains-app-vhosts
|
||
|
|
# output: other-name.dokku.me node-js-app.dokku.com
|
||
|
|
```
|