File size: 413 Bytes
8a00a9b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /bin/bash

# Run the container on Azure
az containerapp create \
  --name cs553-casestudy4-group13 \
  --resource-group CS553 \
  --environment managedenvironment-cs553 \
  --image venkateshroshan/mlops-cs4:latest \
  --ingress external \
  --target-port 7860
  
# Get the URL
az containerapp show \
  --name cs553-casestudy4-group13 \
  --resource-group CS553 \
  --query properties.configuration.ingress.fqdn