Skip to content

Petio

Docker Pulls GitHub Stars Compose Templates

Description

Petio is a third party companion app available to Plex server owners to allow their users to request, review and discover content. The app is built to appear instantly familiar and intuitive to even the most tech-agnostic users. Petio will help you manage requests from your users, connect to other third party apps such as Sonarr and Radarr, notify users when content is available and track request progress. Petio also allows users to discover media both on and off your server, quickly and easily find related content and review to leave their opinion for other users.

Install/Setup

This container requires a mongodb instance that is not included in DockSTARTer. You can add mongodb to your override using the example below.

Example Docker Compose Override

services:
  mongo:
    container_name: mongo
    environment:
      - TZ=${TZ}
    hostname: ${DOCKER_HOSTNAME}
    image: mongo:4.4
    ports:
      - 27017:27017
    restart: unless-stopped
    user: ${PUID}:${PGID}
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - ${DOCKER_VOLUME_CONFIG}/mongo:/data/configdb
      - ${DOCKER_VOLUME_CONFIG}/mongo/db:/data/db