# If you're not sure what timezone you should fill in, you can look at the following list: # https://en.wikipedia.org/wiki/List_of_tz_database_time_zones # Use the column that says "TZ database name". # To find your system's preconfigured timezone run: cat /etc/timezone TIMEZONE=Europe/Amsterdam # The PleX claim token is used to connect your server to your account. It can be obtained at # https://www.plex.tv/claim/ and is valid for 4 minutes after generating the token. PLEX_CLAIM= # Choose your root directory for keeping all your container configs and data. # This is used as the default base path when the more specific *_DIR variables below are left empty. ROOT_DIR= # Optional: override individual locations independently of ROOT_DIR. Leave empty to derive them from ROOT_DIR. # Defaults: # CONFIG_DIR = ${ROOT_DIR}/config (per-service config folders) # DOWNLOADS_DIR = ${ROOT_DIR}/data (contains torrents/ and usenet/) # MEDIA_DIR = ${ROOT_DIR}/data/media (final media library: tv, movies, music, ...) # # IMPORTANT: the TRaSH guide relies on hardlinks and atomic moves between downloads and media. # Hardlinks only work when DOWNLOADS_DIR and MEDIA_DIR are on the SAME filesystem. If you put them # on different drives/mounts, Sonarr/Radarr/etc. will fall back to copying, using extra disk space # and time. Split these only if you understand that trade-off. CONFIG_DIR= DOWNLOADS_DIR= MEDIA_DIR= # USER IDs for each container that requires their own user. The default values will most likely suffice, but in case one of these IDs is already in use on your system it will have to be changed. Any value should work as long as there aren't conflicts with other users. # If you've already set up the containers and want to change user IDs after the fact, you have to remove the old users first and re-set permissions. First run remove_old_users.sh and then the steps for manual installation. # If you're doing a manual installation make sure to first change the IDs in this file, and then run setup.sh to set up the directory structure and permissions before you start the docker containers. MEDIACENTER_GID=13000 SONARR_UID=13001 RADARR_UID=13002 LIDARR_UID=13003 # Discontinued READARR_UID=13004 MYLAR_UID=13005 AUDIOBOOKSHELF_UID=13014 BAZARR_UID=13013 PROWLARR_UID=13006 QBITTORRENT_UID=13007 JACKETT_UID=13008 PLEX_UID=13010 OVERSEERR_UID=13009 SABNZBD_UID=13011 JELLYSEERR_UID=13012 # The user used to run docker-compose. To find this run: id -u UID=1000