Nacho Eigu
Nacho Eigu

Reputation: 27

Scheduling container in Azure

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

Answers (1)

Zethuman
Zethuman

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 * * *"

Upvotes: 1

Related Questions