Skip to content

Instantly share code, notes, and snippets.

@andrewmatveychuk
Created May 14, 2026 17:47
Show Gist options
  • Select an option

  • Save andrewmatveychuk/cf94a074381af57a88be1019b94a31f1 to your computer and use it in GitHub Desktop.

Select an option

Save andrewmatveychuk/cf94a074381af57a88be1019b94a31f1 to your computer and use it in GitHub Desktop.
Bicep snippet for configuring Container App volumes and mounts
// ...
containerVolumes: [
{
name: ghostContentFileShareName // A folder name in your file share to use
storageName: containerAppEnvironmentStorageName
storageType: 'nfsAzureFile' // This must be the same type as the Azure File share you are connecting to
}
]
containerVolumeMounts: [
{
volumeName: ghostContentFileShareName
mountPath: ghostContentFilesMountPath // Where you file share should be mounted in the container
}
]
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment