How autorun supervisord in php-fpm container
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.