Added Tautulli and improved documentation

This commit is contained in:
Luctia
2022-07-03 17:16:57 +02:00
parent 491d5f70ef
commit bf60c9c495
2 changed files with 35 additions and 8 deletions

View File

@@ -1,13 +1,25 @@
# EZARR # EZARR
Ezarr is a project built to make it EZ to deploy a Servarr mediacenter on an Ubuntu server. It Ezarr is a project built to make it EZ to deploy a Servarr mediacenter on an Ubuntu server. It
features: features:
- [Sonarr](https://sonarr.tv/) - [Sonarr](https://sonarr.tv/) is an application to manage TV shows. It is capable of keeping track
- [Radarr](https://radarr.video/) of what you'd like to watch, at what quality, in which language and more, and can find a place to
- [Lidarr](https://lidarr.audio/) download this if connected to Prowlarr and qBittorrent.
- [Prowlarr](https://wiki.servarr.com/prowlarr) - [Radarr](https://radarr.video/) is like Sonarr, but for movies.
- [qBittorrent](https://www.qbittorrent.org/) - [Lidarr](https://lidarr.audio/) is like Radarr and Sonarr, but for music.
- [PleX](https://www.plex.tv/) - [Prowlarr](https://wiki.servarr.com/prowlarr) can keep track of indexers, which are services that
- [Jellyfin](https://jellyfin.org/) keep track of Torrent or UseNet links. One can search an indexer for certain content and find a
where to download this. **Note**: when adding an indexer, please do not set the "seed ratio" to
less than 1. Less than 1 means that you upload less than you download. Not only is this
unfriendly towards your fellow users, but it can also get you banned from certain indexers.
- [qBittorrent](https://www.qbittorrent.org/) can download torrents and provides a bunch more
features for management.
- [PleX](https://www.plex.tv/) is a mediaserver. Using this, you get access to a Netflix-like
interface across many devices like your laptop or computer, your phone, your TV and more. For
some features, you need a [PleX pass](https://www.plex.tv/nl/plex-pass/).
- [Tautulli](https://tautulli.com/) is a monitoring application for PleX which can keep track of
what has been watched, who watched it, when and where they watched it, and how it was watched.
- [Jellyfin](https://jellyfin.org/) is an alternative for PleX. Which you'd like to use is a matter
of preference, and you *could* even use both, although this is probably a waste of resources.
## Using ## Using
1. To get started, clone the repository in a directory of your choosing. **Note: this will be where 1. To get started, clone the repository in a directory of your choosing. **Note: this will be where

View File

@@ -15,6 +15,21 @@ services:
- ${ROOT_DIR}/data/media:/media - ${ROOT_DIR}/data/media:/media
restart: unless-stopped restart: unless-stopped
tautulli:
image: lscr.io/linuxserver/tautulli:latest
container_name: tautulli
depends_on:
- plex
environment:
- PUID=1000
- PGID=${MEDIACENTER_GID}
- TZ=${TIMEZONE}
volumes:
- ${ROOT_DIR}/docker/tautulli-config:/config
ports:
- 8181:8181
restart: unless-stopped
jellyfin: jellyfin:
image: lscr.io/linuxserver/jellyfin:latest image: lscr.io/linuxserver/jellyfin:latest
container_name: jellyfin container_name: jellyfin
@@ -22,7 +37,7 @@ services:
- PUID=1000 - PUID=1000
- PGID=${MEDIACENTER_GID} - PGID=${MEDIACENTER_GID}
- UMASK=002 - UMASK=002
- TZ=Europe/Amsterdam - TZ=${TIMEZONE}
volumes: volumes:
- ${ROOT_DIR}/docker/jellyfin-config:/config - ${ROOT_DIR}/docker/jellyfin-config:/config
- ${ROOT_DIR}/data/media:/data - ${ROOT_DIR}/data/media:/data