我的symfony.config
文件包含以下container_command
:
container_commands:
01_migrate:
command: php app/console doctrine:schema:update --force
php app/console doctrine:schema:update --force
可以通过ssh
(sudo
)正常工作,但是当我通过git aws.push
部署应用时,我收到以下错误:
[Instance: i-0123456789 Module: AWSEBAutoScalingGroup ConfigSet: null]
Failed on instance with return code: 1 Output: Error occurred during build:
Command 01_schemaupdate failed .
我唯一能想到的是权限,但我认为config命令是以webapp
用户身份运行的。添加sudo
也无济于事。有什么想法吗?