Skip to main content

Pair Drop - Page is a work in process

Requirements

Steps to follow

  1.  Create a folder using the command - mkdir pairdrop 
  2. Use the command ls to verify the folder was created
  3. Move inside the jellyfin folder using the command cd pairdrop
  4.  Next check what what directory you are in using the command pwd
  5.  After running pwd you should see something like /home/[YOUR-USER-NAME]/pairdrop printed out. Remember this you will need to know it when updating the docker compose file.
  6. Create a docker-compose.yaml file by running the following command sudo nano docker-compose.yaml

    Docker Compose Command

version: "2.1"
services:
  pairdrop:
    image: lscr.io/linuxserver/pairdrop:latest
    container_name: pairdrop
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - RATE_LIMIT=false #optional
      - WS_FALLBACK=false #optional
      - RTC_CONFIG= #optional
      - DEBUG_MODE=false #optional
    ports:
      - 3000:3000
    restart: unless-stopped

Above is the code  required to deploy FreshRSS

  1. Once everything is copied and pasted in and edited press control+x (at the same time) on your keyboard to exit editing mode.

  2. Press Y then return on your keyboard to save everything

  3. Once you have the compose file setup, run 'sudo docker-compose up -d'

  4. Containers will be setup and created.
  5. In a browser visit server-local-ip-address:3000