thinkfleetai/thinkfleet-engine

azure-container-apps

Manage Azure Container Apps -- deploy, scale, and configure containerized applications.

First seen Mar 1, 2026

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.

Also in this package

Other skills from thinkfleetai/thinkfleet-engine · top by installs.

npx skills add thinkfleetai/thinkfleet-engine

Browse all from 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.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,859 B
  • docs SUMMARY.md 115 B

History

  1. First seen on skills.sh
  2. 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.