Created
May 14, 2026 17:47
-
-
Save andrewmatveychuk/cf94a074381af57a88be1019b94a31f1 to your computer and use it in GitHub Desktop.
Bicep snippet for configuring Container App volumes and mounts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ... | |
| 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