Skip to content

psyko-gh/overcrawlrr

Repository files navigation

Overcrawlrr

Release Edge

CRON based bot that automatically requests movies you may like in Overseer/Jellyseer using your own rules.

  # Accept Sci-fi movie with a global rating above 5
  rules:
    - name: Acceptable sci-fi movie
      whenMatch:
        - genre:
            - science-fiction
        - score: above 5
      action: accept

Requirement:

Check the documentation for more details

Quick install

docker-compose

See docker-compose.yaml file for full example

services:
  overcrawlrr:
    image: ghcr.io/psyko-gh/overcrawlrr:latest
    container_name: overcrawlrr
    restart: unless-stopped
    ports:
      - 5056:5056
    environment:
      - OVERSEERR_USER=
      - OVERSEERR_PASSWORD=
    volumes:
      - /path/to/config:/config

docker cli

docker run -d \
  --name=overcralwrr \
  --restart=unless-stopped \
  - OVERSEERR_USER= \
  - OVERSEERR_PASSWORD= \
  -v /path/to/config:/config \
  ghcr.io/psyko-gh/overcrawlrr:latest