我是Heroku Container Deployment的新手。在我的场景中,我使用postgres - Docker Official Images中的Docker构建了一个自定义PostgreSQL映像。
在部署到Heroku时,构建的映像和容器将被推送到相应的 Heroku Container Registry 。但是,使用CLI命令发布该错误时,会抛出此错误(通过heroku logs --tail
发现):
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 90 seconds of launch
我的Procfile定义为web: postgres -p $PORT -h 0.0.0.0
。
我想要从创建Docker映像并编辑 Procfile 开始的详细部署过程。 预先感谢您的帮助。