Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to reflect latest changes to CLI #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions with-fqdn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ az containerapp create \
DOTNET_FQDN=$(az containerapp show \
--resource-group 'sample-rg' \
--name dotnet-app \
--query configuration.ingress.fqdn -o tsv)
--query properties.configuration.ingress.fqdn -o tsv)

# Deploy the container-1-node node-app
az containerapp create \
Expand All @@ -60,7 +60,6 @@ az containerapp create \
--image 'ghcr.io/azure-samples/container-apps-connect-multiple-apps/node:main' \
--target-port 3000 \
--ingress 'external' \
--environment-variables DOTNET_FQDN=$DOTNET_FQDN \
--query configuration.ingress.fqdn
--env-vars DOTNET_FQDN=$DOTNET_FQDN
```