justsky/rbg

By justsky

Updated 1 day ago

Selfhosted RARBG

Buildkit cache
Image
Integration & delivery
Databases & storage
0

9.2K

justsky/rbg repository overview

RARBG selfhosted

A Torznab API that can be used with the Servarr stack.

Quick start

  • Obtain a copy of the RARBG SQLite database, I can't help you with that but it's floating around!
  • Adapt the following docker-compose.yml file to your needs. At a minimum you'll need to point the /rarbg_db.sqlite volume to the path of your SQLite file, and ensure this container is running in the same Docker network as your Servarr stack containers:
---
version: "3.9"
services:
  rarbg:
    container_name: rarbg
    image: "justsky/rbg:latest"
#    environment:
#      - "PATH_SQLITE_DB=/rarbg_db.sqlite" (optional, this is the default value)
#      - "PATH_TRACKERS=/trackers.txt" (optional, this is the default value)
#      - "DEBUG=1" (optional, useful for troubleshooting)
    volumes:
      - "/path/to/rarbg_db.sqlite:/rarbg_db.sqlite"
    ports:
      - "3333:3333"
    restart: unless-stopped
  • Run docker-compose up -d.
  • The torznab endpoint is now exposed on port 3333 under the path /torznab.
  • In Prowlarr, Radarr or Sonarr, you can now add RARBG as a Generic Torznab indexer.

Alternatively, start the container using docker run:

docker run -v /path/to/rarbg_db.sqlite:/rarbg_db.sqlite -p 3333:3333 justsky/rbg:latest

Or, install GoLang, clone this repo and run directly:

PATH_SQLITE_DB=/path/to/rarbg_db.sqlite go run .

Tag summary

Content type

Buildkit_cache

Digest

sha256:f697c5908

Size

412.2 MB

Last updated

1 day ago

docker pull justsky/rbg:buildcache