You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you pass a local source folder to the `az acr build` command, the `.git` folder is excluded from the uploaded package by default. You can create a `.dockerignore` file with the following setting. It tells the command to restore all files under `.git` in the uploaded package.
461
463
462
-
```
464
+
```sh
463
465
!.git/**
464
466
```
465
467
466
468
This setting also applies to the `az acr run` command.
467
469
470
+
### Does Tasks support GitLab for Source triggers?
471
+
472
+
We currently do not support GitLab for Source triggers.
473
+
474
+
### What git repository management service does Tasks support?
475
+
476
+
| Git service | Source context | Manual build | Auto build through commit trigger |
| GitLab |https://gitlab.com/user/myapp-repo.git#mybranch:myfolder| Yes | No |
481
+
| BitBucket |https://[email protected]/user/mayapp-repo.git#mybranch:myfolder| Yes | No |
482
+
483
+
## Run Error Message Troubleshooting
484
+
485
+
| Error message | Troubleshooting guide |
486
+
|---|---|
487
+
|No access was configured for the VM, hence no subscriptions were found|This could happen if you are using `az login --identity` in your ACR Task. This is a transient error and occurs when the role assignment of your Managed Identity hasn't propagated. Waiting a few seconds before retrying works.|
0 commit comments