The official documentation of Akeneo's Docker installation is stating that you should be able to run a PHP daemon with the following command:
$ APP_ENV=dev make start-job-worker
I tried this command from the container and I got this issue:
Command "akeneo:batch:job-queue-consumer-daemon" is not defined.
Can anyone point me how can I start the job processing daemon, please?
The official documentation of Akeneo's Docker installation is stating that you should be able to run a PHP daemon with the following command:
$ APP_ENV=dev make start-job-worker
I tried this command from the container and I got this issue:
Command "akeneo:batch:job-queue-consumer-daemon" is not defined.
Can anyone point me how can I start the job processing daemon, please?
Share Improve this question asked Mar 23 at 11:12 olqminolqmin 1676 bronze badges1 Answer
Reset to default 0I actually managed to make it work with the following command run from the container:
`$(PHP_RUN) bin/console messenger:consume ui_job import_export_job data_maintenance_job ${O}`