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
| mcr.microsoft.com/mlops/python:build-[id]| where [id] is Azure Devops build id e.g. mcr.microsoft.com/mlops/python:build-20200325.1 |
16
+
| mcr.microsoft.com/mlops/python:amlsdk-[version]| where [version] is aml sdk version e.g. mcr.microsoft.com/mlops/python:amlsdk-1.1.5.1 |
17
+
| mcr.microsoft.com/mlops/python:release-[id]| where [id] is github release id e.g. mcr.microsoft.com/mlops/python:release-3.0.0 ||
18
+
10
19
In your project you will want to build your own
11
20
Docker image that only contains the dependencies and tools required for your
12
21
use case. This image will be more likely smaller and therefore faster, and it
13
-
will be totally maintained by your team.
22
+
will be totally maintained by your team.
14
23
15
-
## Provision an Azure Container Registry
24
+
## Provision an Azure Container Registry
16
25
17
26
An Azure Container Registry is deployed along your Azure ML Workspace to manage models.
18
27
You can use that registry instance to store your MLOps container image as well, or
@@ -21,6 +30,7 @@ provision a separate instance.
21
30
## Create a Registry Service Connection
22
31
23
32
[Create a service connection](https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=azure-devops&tabs=yaml#sep-docreg) to your Azure Container Registry:
33
+
24
34
- As *Connection type*, select *Docker Registry*
25
35
- As *Registry type*, select *Azure Container Registry*
26
36
- As *Azure container registry*, select your Container registry instance
@@ -83,7 +93,7 @@ Run the pipeline and ensure your container has been used.
83
93
Especially when working in a team, it's possible for environment changes across branches to interfere with one another.
84
94
85
95
For example, if the master branch is using scikit-learn and you create a branch to use Tensorflow instead, and you
0 commit comments