I want to start below services when container is running.
sudo service celeryd start
sudo service celerybeat start
service php7.0-fpm start
service rsyslog start
Current below command is not working AWS ECS. And throwing some errors.
ENTRYPOINT sudo service celeryd start
&& sudo service celerybeat start
&& service php7.0-fpm start
&& service rsyslog start && bash
Please advise me how to do it
Thanks in advance.