{"id":2877,"date":"2025-06-10T15:17:52","date_gmt":"2025-06-10T15:17:52","guid":{"rendered":"https:\/\/fadyanwar.com\/?p=2877"},"modified":"2025-06-10T15:17:55","modified_gmt":"2025-06-10T15:17:55","slug":"how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs","status":"publish","type":"post","link":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/","title":{"rendered":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs"},"content":{"rendered":"\n<p>If you&#8217;ve been following my blog, you know I love combining self-hosted media applications with Azure Files for scalable, cloud-backed storage. After setting up Jellyfin for videos and Navidrome for music, it&#8217;s time to tackle photo management with PhotoPrism, a powerful, open-source solution for organizing and accessing your photo library.<\/p>\n\n\n\n<p>In this guide, I&#8217;ll show you how to deploy PhotoPrism using Docker Compose while storing all your photos and metadata in Azure Files, just like we did with Syncthing, Jellyfin, and Navidrome.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Why PhotoPrism with Azure Files?<\/p>\n\n\n\n<p>PhotoPrism is an excellent alternative to Google Photos, offering:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AI-powered facial recognition<\/li>\n\n\n\n<li>Advanced search (by location, objects, date)<\/li>\n\n\n\n<li>Metadata extraction and organization<\/li>\n\n\n\n<li>Web and mobile-friendly interface<\/li>\n<\/ul>\n\n\n\n<p>By using Azure Files, you get:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Scalable storage (pay only for what you use)<\/li>\n\n\n\n<li>Redundancy and backups (via Azure snapshots)<\/li>\n\n\n\n<li>Seamless mounting on Linux (as we did before)<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Prerequisites<\/strong><\/p>\n\n\n\n<p>Before we begin, make sure you have:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Azure Files set up (follow my previous <a href=\"https:\/\/fadyanwar.com\/index.php\/2025\/05\/19\/how-to-mount-azure-files-on-linux-and-sync-data-with-rsync\/\">guide<\/a>)<\/li>\n\n\n\n<li>Docker &amp; Docker Compose installed (same as in my <a href=\"https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/\">Jellyfin setup<\/a>)<\/li>\n\n\n\n<li>A Linux server (I\u2019m using Ubuntu, but this works on any distro)<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Step 1: Mount Azure Files for PhotoPrism<\/strong><\/p>\n\n\n\n<p>First, mount your Azure Files share where PhotoPrism will store photos and metadata:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mkdir -p \/mnt\/azurephotoprism  \nsudo mount -t cifs \/\/&lt;storage-account>.file.core.windows.net\/&lt;share-name> \/mnt\/azurephotoprism \\\n-o vers=3.0,username=&lt;storage-account>,password=&lt;access-key>,dir_mode=0777,file_mode=0777,serverino\n<\/code><\/pre>\n\n\n\n<p>To make this permanent, add it to <code>\/etc\/fstab<\/code> (as covered in my Azure Files mounting guide).<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Step 2: Prepare the Directory Structure<\/strong><\/p>\n\n\n\n<p>PhotoPrism needs three main directories:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Storage (where your organized photos live)<\/li>\n\n\n\n<li>Import (where new photos are initially uploaded)<\/li>\n\n\n\n<li>Database (MariaDB data for metadata)<\/li>\n<\/ul>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir -p \/mnt\/azurephotoprism\/photoprism\/{storage,import,database}\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Step 3: Set Up Docker Compose<\/strong><\/p>\n\n\n\n<p>Instead of using the default compose.yaml from PhotoPrism\u2019s site, we\u2019ll customize it for Azure Files storage.<\/p>\n\n\n\n<p>Create a <code>docker-compose.yml<\/code> file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>version: '3.5'\n\nservices:\n  photoprism:\n    image: photoprism\/photoprism:latest\n    container_name: AzureFilesPhotoprism\n    depends_on:\n      - mariadb\n    ports:\n      - \"2342:2342\"\n    environment:\n      PHOTOPRISM_ADMIN_PASSWORD: \"ChangeThisPassword!\"\n      PHOTOPRISM_STORAGE_PATH: \"\/photoprism\/storage\"\n      PHOTOPRISM_IMPORT_PATH: \"\/photoprism\/import\"\n      PHOTOPRISM_EXCLUDE: \"cache,thumbnails,*temp*\"\n    volumes:\n      - \"\/mnt\/azurephotoprism\/photoprism\/storage:\/photoprism\/storage\"\n      - \"\/mnt\/azurephotoprism\/photoprism\/import:\/photoprism\/import\"\n\n  mariadb:\n    image: mariadb:10.6\n    container_name: photoprism-mariadb\n    volumes:\n      - \"\/mnt\/azurephotoprism\/photoprism\/database:\/var\/lib\/mysql\"\n    environment:\n      MYSQL_ROOT_PASSWORD: \"insecure\"\n      MYSQL_DATABASE: photoprism\n      MYSQL_USER: photoprism\n      MYSQL_PASSWORD: \"insecure\"\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Step 4: Launch PhotoPrism<\/strong><\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>docker-compose up -d\n<\/code><\/pre>\n\n\n\n<p>Wait a few minutes, then access PhotoPrism at: http:\/\/your-server-ip:2342<\/p>\n\n\n\n<p>Log in with:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Username: admin<\/li>\n\n\n\n<li>Password: What you set in PHOTOPRISM<em>ADMIN<\/em>PASSWORD<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Step 5: Configure PhotoPrism for Azure Files<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Set up storage paths in Settings \u2192 Library.<\/li>\n\n\n\n<li>Start importing photos (either via upload or pointing to existing folders).<\/li>\n\n\n\n<li>Enable AI features (face recognition, object detection).<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Performance Tips for Azure Files<\/p>\n\n\n\n<p>Since Azure Files can have latency, consider:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enable local caching for frequently accessed thumbnails<\/li>\n\n\n\n<li>Schedule indexing during off-peak hours<\/li>\n\n\n\n<li>Use Premium File Shares if performance is critical<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Backup &amp; Snapshots<\/strong><\/p>\n\n\n\n<p>Just like in my Syncthing guide, use Azure snapshots:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az storage share snapshot --name &lt;share-name> --account-name &lt;storage-account>\n<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>Final Thoughts<\/strong><\/p>\n\n\n\n<p>Now you have a fully cloud-backed PhotoPrism setup with Azure Files, just like we did with Jellyfin and Navidrome. This gives you:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Unlimited photo storage (scaled via Azure)<\/li>\n\n\n\n<li>AI-powered organization (without vendor lock-in)<\/li>\n\n\n\n<li>Self-hosted privacy (no Google\/Apple)<\/li>\n<\/ul>\n\n\n\n<p>If you run into issues, check my previous guides or drop a comment below!<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p>Next steps?<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Sync your photos automatically with Syncthing + Azure Files: https:\/\/fadyanwar.com\/index.php\/2025\/05\/21\/setting-up-syncthing-with-azure-files\/<\/li>\n\n\n\n<li>Stream videos with Jellyfin on Azure: https:\/\/fadyanwar.com\/index.php\/2025\/06\/04\/setting-up-jellyfin-to-stream-your-azure-backed-media-collection\/<\/li>\n<\/ul>\n\n\n\n<p>Happy self-hosting! \ud83d\ude80<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;ve been following my blog, you know I love combining self-hosted media applications with Azure Files for scalable, cloud-backed storage. After setting up Jellyfin for videos and Navidrome for music, it&#8217;s time to tackle photo management with PhotoPrism, a powerful, open-source solution for organizing and accessing your photo library. In this guide, I&#8217;ll show [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2880,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_vp_format_video_url":"","_vp_image_focal_point":[],"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2877","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar\" \/>\n<meta property=\"og:description\" content=\"If you&#8217;ve been following my blog, you know I love combining self-hosted media applications with Azure Files for scalable, cloud-backed storage. After setting up Jellyfin for videos and Navidrome for music, it&#8217;s time to tackle photo management with PhotoPrism, a powerful, open-source solution for organizing and accessing your photo library. In this guide, I&#8217;ll show [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/\" \/>\n<meta property=\"og:site_name\" content=\"Fady Anwar\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-10T15:17:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-10T15:17:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1400\" \/>\n\t<meta property=\"og:image:height\" content=\"950\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fady Anwar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:site\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fady Anwar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/\"},\"author\":{\"name\":\"Fady Anwar\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"headline\":\"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs\",\"datePublished\":\"2025-06-10T15:17:52+00:00\",\"dateModified\":\"2025-06-10T15:17:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/\"},\"wordCount\":469,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/PhotoPrism.jpg?fit=1400%2C950&ssl=1\",\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/\",\"name\":\"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/PhotoPrism.jpg?fit=1400%2C950&ssl=1\",\"datePublished\":\"2025-06-10T15:17:52+00:00\",\"dateModified\":\"2025-06-10T15:17:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/PhotoPrism.jpg?fit=1400%2C950&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/PhotoPrism.jpg?fit=1400%2C950&ssl=1\",\"width\":1400,\"height\":950},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/06\\\/10\\\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fadyanwar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/\",\"name\":\"Fady Anwar\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fadyanwar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\",\"name\":\"Fady Anwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"caption\":\"Fady Anwar\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/","og_locale":"en_US","og_type":"article","og_title":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar","og_description":"If you&#8217;ve been following my blog, you know I love combining self-hosted media applications with Azure Files for scalable, cloud-backed storage. After setting up Jellyfin for videos and Navidrome for music, it&#8217;s time to tackle photo management with PhotoPrism, a powerful, open-source solution for organizing and accessing your photo library. In this guide, I&#8217;ll show [&hellip;]","og_url":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/","og_site_name":"Fady Anwar","article_published_time":"2025-06-10T15:17:52+00:00","article_modified_time":"2025-06-10T15:17:55+00:00","og_image":[{"width":1400,"height":950,"url":"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg","type":"image\/jpeg"}],"author":"Fady Anwar","twitter_card":"summary_large_image","twitter_creator":"@fadyanwar","twitter_site":"@fadyanwar","twitter_misc":{"Written by":"Fady Anwar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#article","isPartOf":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/"},"author":{"name":"Fady Anwar","@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"headline":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs","datePublished":"2025-06-10T15:17:52+00:00","dateModified":"2025-06-10T15:17:55+00:00","mainEntityOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/"},"wordCount":469,"commentCount":0,"publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg?fit=1400%2C950&ssl=1","articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/","url":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/","name":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs - Fady Anwar","isPartOf":{"@id":"https:\/\/fadyanwar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#primaryimage"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg?fit=1400%2C950&ssl=1","datePublished":"2025-06-10T15:17:52+00:00","dateModified":"2025-06-10T15:17:55+00:00","breadcrumb":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#primaryimage","url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg?fit=1400%2C950&ssl=1","contentUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg?fit=1400%2C950&ssl=1","width":1400,"height":950},{"@type":"BreadcrumbList","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/06\/10\/how-to-set-up-photoprism-with-azure-files-storage-for-your-photo-management-needs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fadyanwar.com\/"},{"@type":"ListItem","position":2,"name":"How to Set Up PhotoPrism with Azure Files Storage for Your Photo Management Needs"}]},{"@type":"WebSite","@id":"https:\/\/fadyanwar.com\/#website","url":"https:\/\/fadyanwar.com\/","name":"Fady Anwar","description":"","publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fadyanwar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03","name":"Fady Anwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","caption":"Fady Anwar"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/06\/PhotoPrism.jpg?fit=1400%2C950&ssl=1","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2877","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/comments?post=2877"}],"version-history":[{"count":2,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2877\/revisions"}],"predecessor-version":[{"id":2879,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2877\/revisions\/2879"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media\/2880"}],"wp:attachment":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media?parent=2877"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/categories?post=2877"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/tags?post=2877"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}