Skip to main content

CPD-DEV-Resource-Group

Resources

OpenWebUI

Azure Deployment Template

{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2021-09-01",
"name": "openwebuidev",
"location": "westeurope",
"properties": {
"containers": [
{
"name": "openwebuidev",
"properties": {
"image": "ghcr.io/open-webui/open-webui:main",
"resources": {
"requests": {
"cpu": 1,
"memoryInGb": 1.5
}
},
"ports": [
{
"port": 80
},
{
"port": 3000
},
{
"port": 8080
}
],
"volumeMounts": [
{
"name": "openwebuivolume",
"mountPath": "/app/backend/data"
}
]
}
}
],
"osType": "Linux",
"ipAddress": {
"type": "Private",
"ports": [
{
"protocol": "tcp",
"port": 80
},
{
"protocol": "tcp",
"port": 3000
},
{
"protocol": "tcp",
"port": 8080
}
]
},
"volumes": [
{
"name": "openwebuivolume",
"azureFile": {
"shareName": "openwebuidata",
"storageAccountName": "kmgopenwebuidata",
"storageAccountKey": "sOKVp6gu2IjS2zMaZkUNKjsUQMq46wlGH3gW98zx33amrKERyZaLGCxLhqg8MAZohsgkI9NFk582+AStJnFHBA=="
}
}
],
"subnetIds": [
{
"id": "/subscriptions/c192f809-f6a4-4462-969a-00ddb9ba8354/resourceGroups/KMG_Resource_Group/providers/Microsoft.Network/virtualNetworks/KMG_Azure_Network/subnets/default2"
}
]
}
}
]
}