Docker 在启动脚本中运行作曲家,作曲家从不运行



我有一个docker容器,它实际上是一个LAMP堆栈。我正在使用主管来管理流程。

我可以在容器启动时执行 bash 脚本,但我无法让脚本运行作曲家。

我的简单脚本

#!/bin/bash
git clone https://github.com/[..project..].git /var/www/
wait
composer update -d /var/www/
wait
# Just here to test if we make it this far...
touch /var/www/test
exit

以及来自 supervisord.conf 负责运行它的部分

[program:deploy]
command=bash deploy.sh
directory=/usr/local/bin/
user=root
autostart=true
autorestart=false
environment=PATH="/usr/bin"
redirect_stderr=true

这将成功克隆存储库,并接触测试文件,但跳过正在运行的编辑器。如果我在容器中打开一个 shell,我可以手动成功执行脚本。

关于如何解决这个问题的任何建议?

问题出在我的主管配置上。

正确的配置是

[program:deploy]
command=bash /usr/local/bin/deploy.sh
autostart=true
autorestart=false
redirect_stderr=true
stdout_logfile=/var/log/composer/run.log

相关内容

  • 没有找到相关文章