Reputation: 27
I would like to know if it is possible to schedule a docker container task (start) in Azure so it could be executed automatically once per week.
Thank you.
Upvotes: 1
Views: 145
Reputation: 69
There is tutorial in microsoft page for this.
In short, you can do this by azure cli:
az acr task timer add \ --name timertask \ --registry $ACR_NAME \ --timer-name timer2 \ --schedule "30 10 * * *"