Any way to run cron in AWS AppRunner?

0

Hello, I have a Symfony app in AWS AppRunner with ECR, and I need to run a scheduled command (php app/console ...), but I dont know how to do this in AppRunner, how to do it? If its impossible, its possible to use Eventbridge->Lambda(command sh on linux)->AppRunner? I tried to do it but its hard ^^

Thanks :)

PS: Sorry my english are not very good ^^'

asked 2 years ago1396 views
2 Answers
1

Hello, I understand you would like a way to run a cron / scheduled command in App Runner. Because App Runner does not have an inbuilt cron/schedule functionality, you may use Event Bridge to trigger a Lambda Function which then runs desired commands. See Controlling and monitoring AWS App Runner applications with Amazon EventBridge for an example of using an Event Bridge cron schedule to pause and resume an App Runner service using Lambda. You could modify this solution as needed.

AWS
answered 2 years ago
0

Thanks to your answer! Well it was what I did

I used Event Bridge with Lamba function, but I didnt find how to run a custom command (symfony, "app/bin ..."), but in the doc it looks I can only run "pause", "resume", "update" well only preconfigured commands ^^' so for now I created an endpoint from my symfony app an I run a GET request from Lambda ^^'

answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions