Walkthrough
Getting Started
Tip
If you are an unRAID user, just use the Community app from @nwithan8 it is listed in Store.
Important
Unraid has an unusual auto-folder behavior where, unless a subpath is specified, it defaults to using the app name (title-cased) as the folder name. Please change the uppercase "P" in /config under the Posterizarr path section to a lowercase "p" /mnt/user/appdata/posterizarr.
Requirements
- Make sure to obtain all the api keys and tokens as you will need them later on for the
config.json.- TMDB API Read Access Token: Obtain TMDB API Token
- NOTE the TMDB API Read Access Token is the really, really long one
- Fanart Personal API Key: Obtain Fanart API Key
- TVDB API Key: Obtain TVDB API Key
- Do not use
"Legacy API Key", it only works with a Project Api Key.
- Do not use
- Plex Token: Optain Plex Token
- TMDB API Read Access Token: Obtain TMDB API Token
Docker/ARM
Manual install (Windows/Linux)
- Please install Powershell (Not needed on docker/unraid)
-
After that you need to install the Fanart Api Wrapper (On Windows as Administrator).
Linux:- It should be visible here
/usr/local/share/powershell/Modules
Windows: - It should be visible here
C:\Program Files\PowerShell\Modulesyou can check locations with this command:
Check If the Profile Exists
Run:
By default, this should point to:- Linux:
/etc/powershell/profile.ps1 - Windows:
C:\Program Files\PowerShell\7\profile.ps1
If the file doesn’t exist, create it:
Linux:
Windows:
Add the Import Statement
Edit the file:
Linux:
Windows:
Add the following line:Save and exit, then it should be loaded and imported everytime you open a pwsh window. 1. If you are on Windows/Linux next step is to clone the repo. - switch into the directory on your server where you want the project to land. (Make sure you have git installed)
Linux:
Windows:
- Git for Windows - Git for Linux - Clone the Repo: - After that you can switch into the cloned Repo/Folder 1. Copy theconfig.example.jsontoconfig.jsonand adjust the settings.-
Enter all the api keys and tokens from Getting Started - Step 1 under the
ApiPartDetailed Config Description- tvdbapi
- tmdbtoken
- FanartTvAPIKey
- PlexToken
-
If you are happy with the default values, you should still ensure that the AssetPath value is set properly.
- On Linux, like this:
/PathToAsset/Dir - On Windows, like this:
C:\\PathToAsset\\Dir- Important - you have to use double
\\in Json.
- Important - you have to use double
- On Linux, like this:
Manual install of Web UI (Windows/Linux)
If you want to use the UI please have a look at this part of the Readme. (default url http://localhost:8000)
- It should be visible here
-
Please start the Script (On first run, ensure its run as Administrator/Sudo, because it has to install a Powershell Module)
- Linux:
- Windows:
Open the Start menu, type Windows PowerShell, select Windows PowerShell, and then select Run as administrator
1. After that it is recommended to run the script in-TestingMode.In this Mode, the script will create sample posters according to the config settings so you can see how it would look before you mass run it against your libraries. These samples will be created in the
testdirectoryYou can find examples and more information here:
- Linux (or via Web UI):
- Windows (or via Web UI):
- You can now fine tune all the
width, height, colorofborders, text boxes and textin config.json (or via Web UI) - After each change of a setting just rerun the script in
-Testingmode so you can see how it looks. - The final step is to set a schedule and let the script run.
- You can also trigger the poster creation on-demand, like this (or via Web UI):
- Linux:
- Windows:
-
Configure Scheduled runs:
Linux: - Cron example:
add a new line like this (every 2 hours):Windows: - You can create a schedule task - How-To
Note
Have a look at the Assets Tip
Docker
-
Adjust the docker-compose.yml to fit your environment.
-
Required environment variables and descriptions can be found here
Docker-Compose example on Linux:
--- services: posterizarr: hostname: "posterizarr" container_name: "posterizarr" environment: - "TZ=Europe/Berlin" - "TERM=xterm" - "RUN_TIME=disabled" image: "ghcr.io/fscorrupt/posterizarr:latest" restart: "unless-stopped" user: "1000:1000" ports: - "8000:8000" networks: - "proxy" volumes: - "/opt/appdata/posterizarr:/config:rw" - "/opt/appdata/posterizarr/assets:/assets:rw" - "/opt/appdata/posterizarr/assetsbackup:/assetsbackup:rw" - "/opt/appdata/posterizarr/manualassets:/manualassets:rw" networks: proxy: driver: bridge external: trueDocker-Compose example on Windows:
2. Switch to the Directory where you want to build/start the container and place the--- version: "3" services: posterizarr: hostname: "posterizarr" container_name: "posterizarr" environment: - "TZ=Europe/Berlin" - "TERM=xterm" - "RUN_TIME=disabled" image: "ghcr.io/fscorrupt/posterizarr:latest" restart: "unless-stopped" ports: - "8000:8000" volumes: - "C:/Docker/Posterizarr:/config:rw" - "C:/Docker/Posterizarr/assets:/assets:rw" - "C:/Docker/Posterizarr/assetsbackup:/assetsbackup:rw" - "C:/Docker/Posterizarr/manualassets:/manualassets:rw"docker-compose.ymlthere.
🎥 How-To Video:

- Linux:
- Windows:
- Now it should download everything and start up your container.
- On first run the container will download the required files and also create the folder structure for you.
- Adjust the settings of your
config.jsoneither in file or via Web UI http://localhost:8000. - Enter all the api keys and tokens from Getting Started - Step 1 under the
ApiPartDetailed Config Description- tvdbapi
- tmdbtoken
- FanartTvAPIKey
- PlexToken
- If you are happy with the default values, you should still ensure that the AssetPath value is set properly.
- On Linux, like this:
/PathToAsset/Dir - On Docker you have to use the binded volume path from your
docker-compose.ymlit has to match/assets.- In the case from above, do not use
C:/Docker/Posterizarr/assetsor/opt/appdata/posterizarr/assetsas asset path, you have to use/assetsas path.
- In the case from above, do not use
- On Windows, like this:
C:\\PathToAsset\\Dir- Important - you have to use double
\\in json.
- Important - you have to use double
- On Linux, like this:
- After that it is recommended to run the script in
-TestingMode either in cli or via Web UI http://localhost:8000.
-
Tip
In this Mode, the script will create sample posters according to the config settings so you can see how it would look before you mass run it against your libraries. These samples will be created in the
testdirectoryYou can find examples and more information here:
In this example posterizarr is the container name
- You can now fine tune all the
width, height, colorofborders, text boxes and textin config.json- After each change of a setting just rerun the script in
-Testingmode so you can see how it looks.
- After each change of a setting just rerun the script in
- The final step is to set a schedule and let the script run either via compose and
RUN_TIMEenv or via Web UI.-
You can also trigger the poster creation on-demand, like this:
-
ARM Prerequisites
- Install Powershell (make an sh file and run it) - Official Link:
# Prerequisites # Update package lists sudo apt-get update # Install dependencies sudo apt-get install jq libssl1.1 libunwind8 -y # Download and extract PowerShell # Grab the latest tar.gz bits=$(getconf LONG_BIT) release=$(curl -sL https://api.github.com/repos/PowerShell/PowerShell/releases/latest) package=$(echo $release | jq -r ".assets[].browser_download_url" | grep "linux-arm${bits}.tar.gz") wget $package # Make folder to put powershell mkdir ~/powershell # Unpack the tar.gz file tar -xvf "./${package##*/}" -C ~/powershell # Make Powershell executable PowerShell sudo chmod +x ~/powershell/pwsh # Create Symlink sudo ~/powershell/pwsh -command 'New-Item -ItemType SymbolicLink -Path "/usr/bin/pwsh" -Target "$PSHOME/pwsh" -Force' - Install ImageMagick 7:
# Prerequisites sudo apt update sudo apt install build-essential apt install libjpeg-dev apt install libpng-dev apt install libfreetype-dev # Download/extract wget https://imagemagick.org/archive/ImageMagick.tar.gz tar xvzf ImageMagick.tar.gz cd ImageMagick-7.1.1-34 # Version can differ # Compilation and Installation ./configure make sudo make install sudo ldconfig /usr/local/lib # Check if it is working magick -version - Now you can Contuine on Step 5 here: Getting Started
Note
Have a look at the Assets Tip