Specify Heroku addon version in app.json
当使用heroku addons:create
,可以指定一个版本,例如在介绍Postgres 9.5的Heroku博客文章中所示:
heroku addons:create heroku-postgresql --version=9.5
{
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}
https://devcenter.heroku.com/articles/app-json-schema#example-app-json
链接地址: http://www.djcxy.com/p/31626.html上一篇: 在R中为剧情图例添加标题