为php composer管理器创建docker-compose.yaml文件

时间:2018-07-23 06:05:53

标签: docker docker-compose

有人解释了确切的命令:install在下面的compose.yaml文件中意味着什么:

composer:
    image:composer/composer
    volumes:
      - ./document_root:/var/www/html
    command: install

1 个答案:

答案 0 :(得分:3)

查找命令文档here

根据文档,它会覆盖默认命令command: bundle exec thin -p 3000并执行您在该文件中给出的任何命令。