Description Usage Arguments Value See Also Examples
Return a ContainerRegistry
object for where the image
(or base image, for Dockerfile packages) is stored in an
Azure container registry.
1 | get_model_package_container_registry(package)
|
package |
The |
The ContainerRegistry
object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Given a ModelPackage object,
# get the container registry information
## Not run:
container_registry <- get_model_package_container_registry(package)
address <- container_registry$address
username <- container_registry$username
password <- container_registry$password
## End(Not run)
# To then authenticate Docker with the Azure container registry from
# a shell or command-line session, use the following command, replacing
# <address>, <username>, and <password> with the values retrieved
# from above:
# ```bash
# docker login <address> -u <username> -p <password>
# ```
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.