File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
playground/familytour-proxy/devops Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11source ../.env
22
3- # az acr build --registry acrars2025 -t openwebui-auth-proxy .
3+ CONTAINER_IMAGE_TAG=v1
4+
5+ # az acr build --registry acrars2025 -t openwebui-auth-proxy:$CONTAINER_IMAGE_TAG .
46# az acr import --name acrars2025 --source ghcr.io/open-webui/open-webui:main --image open-webui:main
57
68az deployment group create \
@@ -10,4 +12,5 @@ az deployment group create \
1012 --parameters \
1113 siteName=ars-family-tour-guide \
1214 jwtSecret=$JWT_SECRET \
13- sessionSecret=$SESSION_SECRET
15+ sessionSecret=$SESSION_SECRET \
16+ containerImageTag=$CONTAINER_IMAGE_TAG
Original file line number Diff line number Diff line change 11param siteName string
2+ param containerImageTag string
23
34@secure ()
45param jwtSecret string
@@ -87,7 +88,7 @@ resource autoProxyApp 'Microsoft.Web/sites/sitecontainers@2024-11-01' = {
8788 name : 'auth-proxy'
8889 parent : webApp
8990 properties : {
90- image : 'acrars2025.azurecr.io/openwebui-auth-proxy:latest '
91+ image : 'acrars2025.azurecr.io/openwebui-auth-proxy:${ containerImageTag } '
9192 authType : 'SystemIdentity'
9293 isMain : true
9394 targetPort : '3000'
You can’t perform that action at this time.
0 commit comments