How autorun supervisord in php-fpm container
05:22 08 Aug 2022

I have php-fpm container with installed supervisor. But using command: CMD ["usr/bin/supervisord"] in Docker file made container finishing with fail(Unlinking stale socket /var/run/supervisor.sock). Run as daemon. But if remove CMD, and run command ourself in bash after container ran, its finish ok.

EDIT: I use Laravel framework, and I need to start queue listener and other processes.

docker supervisord