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
Copy file name to clipboardExpand all lines: articles/container-apps/tutorial-java-quarkus-connect-managed-identity-postgresql-database.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,13 +42,13 @@ Create a resource group with the [az group create](/cli/azure/group#az-group-cre
42
42
43
43
The following example creates a resource group named `myResourceGroup` in the East US Azure region.
44
44
45
-
```azurecli
45
+
```azurecli-interactive
46
46
az group create --name myResourceGroup --location eastus
47
47
```
48
48
49
49
Create an Azure container registry instance using the [az acr create](/cli/azure/acr#az-acr-create) command. The registry name must be unique within Azure, contain 5-50 alphanumeric characters. All letters must be specified in lower case. In the following example, `mycontainerregistry007` is used. Update this to a unique value.
50
50
51
-
```azurecli
51
+
```azurecli-interactive
52
52
az acr create \
53
53
--resource-group myResourceGroup \
54
54
--name mycontainerregistry007 \
@@ -61,7 +61,7 @@ This tutorial uses a sample Fruits list app with a web UI that calls a Quarkus R
61
61
62
62
Run the following commands in your terminal to clone the sample repo and set up the sample app environment.
cd quarkus-quickstarts/hibernate-orm-panache-quickstart
67
67
```
@@ -221,7 +221,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
221
221
222
222
Before pushing container images, you must log in to the registry. To do so, use the [az acr login][az-acr-login] command. Specify only the registry resource name when signing in with the Azure CLI. Don't use the fully qualified login server name.
223
223
224
-
```azurecli
224
+
```azurecli-interactive
225
225
az acr login --name <registry-name>
226
226
```
227
227
@@ -239,7 +239,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
239
239
240
240
1. Create a Container Apps instance by running the following command. Make sure you replace the value of the environment variables with the actual name and location you want to use.
241
241
242
-
```azurecli
242
+
```azurecli-interactive
243
243
RESOURCE_GROUP="myResourceGroup"
244
244
LOCATION="eastus"
245
245
CONTAINERAPPS_ENVIRONMENT="my-environment"
@@ -252,7 +252,7 @@ cd quarkus-quickstarts/hibernate-orm-panache-quickstart
252
252
253
253
1. Create a container app with your app image by running the following command. Replace the placeholders with your values. To find the container registry admin account details, see [Authenticate with an Azure container registry](../container-registry/container-registry-authentication.md)
0 commit comments