azure-container-apps
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.
More from thinkfleetai/thinkfleet-engine
local-whisper
Local speech-to-text using OpenAI Whisper. Runs fully offline after model download. High quality transcription with multiple model sizes.
149flyio-cli-public
Use the Fly.io flyctl CLI for deploying and operating apps on Fly.io: deploys (local or remote builder), viewing status/logs, SSH/console, secrets/config, scaling, machines, volumes, and Fly Postgres (create/attach/manage databases). Use when asked to deploy to Fly.io, debug fly deploy/build/runtime failures, set up GitHub Actions deploys/previews, or safely manage Fly apps and Postgres.
24feishu-bridge
Connect a Feishu (Lark) bot to ThinkFleet via WebSocket long-connection. No public server, domain, or ngrok required. Use when setting up Feishu/Lark as a messaging channel, troubleshooting the Feishu bridge, or managing the bridge service (start/stop/logs). Covers bot creation on Feishu Open Platform, credential setup, bridge startup, macOS launchd auto-restart, and group chat behavior tuning.
13bambu-local
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
10video-subtitles
Generate SRT subtitles from video/audio with translation support. Transcribes Hebrew (ivrit.ai) and English (whisper), translates between languages, burns subtitles into video. Use for creating captions, transcripts, or hardcoded subtitles for WhatsApp/social media.
10freshrss
Query headlines and articles from a self-hosted FreshRSS instance. Use when the user asks for RSS news, latest headlines, feed updates, or wants to browse articles from their FreshRSS reader. Supports filtering by category, time range, and count.
9