简体   繁体   中英

How to run docker-compose with php-fpm and php-cli?

I need to run docker-compose with two containers,- php-fpm and php-cli. Although I need another container with composer.

When I run docker-compose up -d - container with php-cli become always restarting and composer container just stops.

PHP cli is not running in daemon mode. You run it, and then it stops. Next, Docker tries to restart it (you've set restart: always policy for php-cli ). :)

IMO php-cli and composer services are redundant. You can use php service for your needs. Simply run docker-compose run php php [path to script]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM