📜  docker composer install - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:34.088000             🧑  作者: Mango

代码示例6
version: '3.7'

services:
  #...other services
  composer_installation:
   container_name: composer_installation
   image: composer
   volumes:
     - ./YOUR-PROJECT/:/app
   command: sh -c "composer install --ignore-platform-reqs && cp .env.example .env && php artisan key:generate"