diff --git a/README.md b/README.md
index 0671ca6c..a777ecca 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,20 @@
## 🚀 Installation
1. Install the app from the Nextcloud app store
-1. ⚒️ Install `exiftool` (`sudo apt install exiftool`).
+1. ⚒️ Install `exiftool` (see below).
1. Run `php ./occ memories:index` to generate metadata indices for existing photos.
1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos. Photos from this directory will be displayed in the timeline, including any photos in nested subdirectories.
1. Installing the [preview generator](https://github.com/rullzer/previewgenerator) for pre-generating thumbnails is strongly recommended.
+## 🔨 Installing Dependencies
+The exact steps depend on your Nextcloud platform. If you use Docker for your Nextcloud instance, you can install Exiftool by using a custom docker image.
+- **Ubuntu/Debian**: `sudo apt install libimage-exiftool-perl`
+- **Fedora**: `sudo dnf install perl-Image-ExifTool`
+- **Arch Linux**: `sudo pacman -S perl-image-exiftool`
+- **Alpine**: `apk add --no-cache exiftool`
+- **MacOS**: `brew install exiftool`
+- **FreeBSD**: `sudo pkg install p5-Image-ExifTool`
+
## 🏗 Development setup
1. ☁ Clone this into your `apps` folder of your Nextcloud.
diff --git a/appinfo/info.xml b/appinfo/info.xml
index eabc77a3..e808da2c 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -18,10 +18,19 @@
## 🚀 Installation
1. Install the app from the Nextcloud app store
-1. ⚒️ Install `exiftool` (`sudo apt install exiftool`).
+1. ⚒️ Install `exiftool` (see below).
1. Run `php ./occ memories:index` to generate metadata indices for existing photos.
1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos. Photos from this directory will be displayed in the timeline, including any photos in nested subdirectories.
1. Installing the [preview generator](https://github.com/rullzer/previewgenerator) for pre-generating thumbnails is strongly recommended.
+
+## 🔨 Installing Dependencies
+The exact steps depend on your Nextcloud platform. If you use Docker for your Nextcloud instance, you can install Exiftool by using a custom docker image.
+- **Ubuntu/Debian**: `sudo apt install libimage-exiftool-perl`
+- **Fedora**: `sudo dnf install perl-Image-ExifTool`
+- **Arch Linux**: `sudo pacman -S perl-image-exiftool`
+- **Alpine**: `apk add --no-cache exiftool`
+- **MacOS**: `brew install exiftool`
+- **FreeBSD**: `sudo pkg install p5-Image-ExifTool`
]]>
1.0.7
agpl