npx skills add microsoftdocs/agent-skills --skill azure-container-apps
thinkfleetai/thinkfleet-engine
azure-container-apps
Manage Azure Container Apps -- deploy, scale, and configure containerized applications.
Installation
npx skills add thinkfleetai/thinkfleet-engine --skill azure-container-apps
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Build, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsPrepare azd-based Azure projects for deployment: generates azure.yaml, infrastructure (Bicep/Te…
568.3K installsUse for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybr…
568.2K installsExecute Azure deployments for ALREADY-PREPARED applications that have existing .azure/deploymen…
568.2K installsPre-deployment validation for Azure readiness. Run deep checks on configuration, infrastructure…
567.7K installsAlso in this package
Other skills from thinkfleetai/thinkfleet-engine · top by installs.
npx skills add thinkfleetai/thinkfleet-engine
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,859 B -
docs
SUMMARY.md115 B
History
- First seen on skills.sh
- First recorded snapshot · 1 installs
SKILL.md
Azure Container Apps
Manage serverless containerized applications.
List container apps
az containerapp list --query '[].{Name:name,ResourceGroup:resourceGroup,Status:provisioningState,FQDN:properties.configuration.ingress.fqdn}' -o table
Show app details
az containerapp show --name my-app --resource-group my-rg | jq '{name, provisioningState, fqdn: .properties.configuration.ingress.fqdn, image: .properties.template.containers[0].image, replicas: .properties.template.scale}'
View logs
az containerapp logs show --name my-app --resource-group my-rg --tail 50
Update container image
az containerapp update --name my-app --resource-group my-rg \
--image myregistry.azurecr.io/my-app:v2 | jq '{name, provisioningState}'
Scale replicas
az containerapp update --name my-app --resource-group my-rg \
--min-replicas 1 --max-replicas 10
Set environment variables
az containerapp update --name my-app --resource-group my-rg \
--set-env-vars "KEY=value" "DB_HOST=mydb.postgres.database.azure.com"
List revisions
az containerapp revision list --name my-app --resource-group my-rg --query '[].{Name:name,Active:active,TrafficWeight:trafficWeight,Created:createdTime}' -o table
Activate/deactivate revision
az containerapp revision activate --name my-app --resource-group my-rg --revision my-app--rev1
Notes
- Container Apps auto-scale based on HTTP traffic, KEDA scalers, or CPU/memory.
- Use revisions for blue-green deployments.
- Confirm before updating images, scaling, or modifying configuration.