• Azure 的 docker image repository 不分群組皆可存取
  • App service 用 docker的話其實裡面還是可以跑subprocess, 也有固定的檔案空間
  • App service 的 auto scale 分兩種, scale up 是指擴增單體效能, scale out 才是一變多
  • 不過 container 的檔案空間不在一起, 要做 auto scale 還是得在 storage center 弄個file share (後來算一下其實蠻便宜的)

Azure 的 docker image repository 清空間 sample

PURGE_CMD="acr purge --filter '{image_name}:.*' --untagged --ago 1d"
az acr run --cmd "$PURGE_CMD" --registry {image_registry_name} /dev/null


Comments

comments powered by Disqus